[Baekjoon 11047번] 동전 0 문제 (with 자바)

반응형
728x90
반응형

문제 11047번 - 동전 0 문제

https://www.acmicpc.net/problem/11047

 

11047번: 동전 0

첫째 줄에 N과 K가 주어진다. (1 ≤ N ≤ 10, 1 ≤ K ≤ 100,000,000) 둘째 줄부터 N개의 줄에 동전의 가치 Ai가 오름차순으로 주어진다. (1 ≤ Ai ≤ 1,000,000, A1 = 1, i ≥ 2인 경우에 Ai는 Ai-1의 배수)

www.acmicpc.net

 

 

풀이

package seohae.algorithm.level1;

import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.util.Scanner;
import java.util.Stack;

/**
 * https://www.acmicpc.net/problem/11047
 */
public class Problem_012_11047 {
    public static void main(String[] args) throws IOException {
        Scanner sc = new Scanner(System.in);

        String param = sc.nextLine();

        int num = Integer.parseInt(param.split(" ")[0]);
        int sum = Integer.parseInt(param.split(" ")[1]);

        Stack<Integer> stack = new Stack<Integer>();

        /* 오름차순의 경우, 제일 비싼 동전부터 체크해야햐므로 stack 사용 */
        for (int i = 0; i < num; i++) {
            Integer input = sc.nextInt();
            stack.push(input);
        }

        int count = 0; /* 동전 개수 */

        while (sum != 0) {
            int target = stack.pop();

            count += sum / target;
            sum = sum % target;
        }

        System.out.println(count);
    }
}

 

 

 

반응형

Designed by JB FACTORY