[프로그래머스] 12941 최솟값 만들기 / Java 정답

programmers

쉬운 문제라도 문제를 푸는 방법은 다양합니다.

더 명확하고 깔끔한 문제 해결 방법을 아신다면 자유롭게 말씀해주세요.

프로그래머스 12941 최솟값 만들기

프로그래머스 저작권을 침해하지 않기 위해

문제 보시고 싶으시면 버튼을 눌러주세요.

답변 형식
프로그래머스 12941 자바
프로그래머스 12941 파이썬

배열 A, B 원소를 1번 씩만 사용하여 총 합 answer이 최소가 되는 곱셈 결과를 찾으면 된다.

풀이 조건

결과값이 최소가 되기 위해서 각각의 곱셈 값이 최소가 되어야 했다.

A의 최대와 B의 최소 / A의 최소와 B의 최대를 계산해야 했다.

import java.util.Arrays;

class Solution
{
    public int solution(int[] A, int[] B)
    {
        Arrays.sort(A);
        Arrays.sort(B);
        /// A, B 각각 sort하여 오름차순 정렬

        int answer = 0;
       
        int q = B.length1;
   
        for(int i=0; i<A.length; i++){
            answer += A[i]*B[q–];
            /// A배열을 작은 수부터 큰 수 순서로
            /// B배열을 큰 수부터 작은 수 순서로
            /// 곱해서 return 값에 더 함
        }
        return answer;
    }
}
import java.util.Arrays;

class Solution
{
    public int solution(int[] A, int[] B)
    {
        Arrays.sort(A);
        Arrays.sort(B);
       
        int answer = 0;
       
        int q = B.length1;
       
        for(int i=0; i<A.length; i++){
            answer += A[i]*B[q–];
        }
        return answer;
    }
}

“[프로그래머스] 12941 최솟값 만들기 / Java 정답”의 51개의 댓글

  1. Lodi players love this one because the slot spins run so smoothly on mobile data here in the Philippines. I usually play during my lunch break and the bonuses actually arrive on time. Really solid option for anyone looking for easy cashouts. spintimegcash

  2. I am a huge fan of slot games and xx888slot has become my go to place recently. The themes are so creative and I love how the bonus features trigger randomly to keep things exciting. I also noticed the payout speed is impressively quick which makes a huge difference. I keep coming back for more and I think you will too. xx888slot

  3. Just discovered this place last weekend and I am already hooked. The game selection is huge and everything runs smoothly even during peak hours. Loved how quick the support team was to sort out my bonus question. Highly recommend giving it a try. casinobeat

  4. [356]88fa Official Login | বিকাশ পেমেন্ট ও সেরা ক্যাসিনো বোনাস,88fa অ্যাপ ডাউনলোড করে সহজেই স্লট গেমের নিয়ম জানুন এবং বিকাশ পেমেন্টের মাধ্যমে গেম খেলা শুরু করুন। আকর্ষণীয় ক্যাসিনো বোনাস পেতে আজই জয়েন করুন। visit: 88fa

  5. [9921]lele4d | Login Resmi Link Alternatif Situs Slot Gacor Hari Ini,lele4d menyediakan link alternatif terbaru untuk akses mudah. Nikmati judi casino dengan deposit dana praktis dan panduan main baccarat online. Daftar sekarang! visit: lele4d

  6. I have been searching for a reliable betting spot for months and finally found my go to place. The odds are always fair and withdrawals go through without any annoying delays. I feel right at home every time I log in. Give it a try and you will see why I keep coming back. trbets10link

  7. Every time I click through to start a session I am greeted with fantastic slot themes that make the time fly by. The welcome rewards are genuinely generous and the loyalty program actually rewards your playtime in meaningful ways. I cannot recommend this spot enough to anyone looking for reliable entertainment. gg88slotlogin

댓글 달기

이메일 주소는 공개되지 않습니다.