[BOJ]グリディアルゴリズム/11047号-コイン0
質問する
回答の提出
バックアップアルゴリズム
回答の提出
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String inputStr = sc.nextLine();
String[] splitStr = inputStr.split(" ");
int numberOfCoin = Integer.parseInt(splitStr[0]); // 동전의 종류
int targetAmount = Integer.parseInt(splitStr[1]); // 구하고자하는 동전 금액의 합
int[] coin = new int[numberOfCoin];
for(int i=0; i<coin.length; i++) { // 입력한 동전의 종류만큼 각각의 동전 입력
coin[i] = sc.nextInt();
}
int count = 0;
for(int j=coin.length-1; j>=0; j--) {
if(coin[j] <= targetAmount) {
count += targetAmount / coin[j]; // 동전의 사용횟수를 추가
targetAmount = targetAmount % coin[j]; // 사용한 동전개수만큼 합에서 차감
}
}
System.out.println(count);
sc.close();
}
}
ソースバックアップアルゴリズム
Reference
この問題について([BOJ]グリディアルゴリズム/11047号-コイン0), 我々は、より多くの情報をここで見つけました https://velog.io/@s2na/BOJ-그리디-알고리즘11047번-동전-0テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol