https://www.acmicpc.net/problem/11047
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main{
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
int[] arr = new int[n];
for(int i=0; i<n; i++){
arr[i] = Integer.parseInt(br.readLine());
}
int cnt = 0;
for(int i=n-1; i>=0; i--){
if(arr[i]>k) continue;
cnt += k / arr[i];
k %= arr[i];
}
System.out.println(cnt);
}
}
동전의 가치가 큰 것부터 차례로 k에서 나눠 동전의 개수를 카운팅 한다.
그래야 동전 개수의 최솟값으 구할 수 있다.
'ALGORITHM' 카테고리의 다른 글
[JAVA] 백준 10610 - 30 (0) | 2022.11.23 |
---|---|
[JAVA] 백준 2875 - 대회 or 인턴 (0) | 2022.11.22 |
[JAVA] 백준 14500번- 테트로미노 (0) | 2022.11.17 |
[JAVA] 백준 1107 - 리모컨 (0) | 2022.11.17 |
[JAVA] 백준 6064 - 카잉 달력 (0) | 2022.11.16 |