Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- recursion example
- CSTS 폭포수 모델
- 한국투자증권 양도세 신고
- katalon 비교
- java.sql.SQLSyntaxErrorException
- 해외주식 양도세 신고
- 해외증권 양도세 한국투자증권
- 홈택스 해외주식 양도세
- js 자동완성
- javascript 자동완성
- katalon
- 한국투자증권 해외주식 양도세
- 재귀함수 예제
- oracle group by
- 테스트 자동화
- 톰캣 실시간 로그
- git 연동
- bfs 미로탐색 java
- tomcat log
- 주식 양도세 신고방법
- 국세청 해외주식 양도세 신고방식
- 피보나치 예제
- 피보나치함수 예제
- 재귀 예제
- katalon 자동화
- 피보나치함수
- Katalon Recorder 사용법
- katalon xpath
- katalon 사용법
- 최대공약수 예제
Archives
- Today
- Total
엄지월드
백준 1049 기타줄 본문
설명
- 최소 금액을 구하는 문제이다.
- 고민이 됐었지만, 6으로 나눠서 가장 많이 갯수를 채우고 + 나머지 1로 가장 많이 갯수를 채우면 되는 것으로 확인되었다.
- 6으로 나눈값과 + 나머지를 혼합하는 케이스만 처음에 제출했었는데 틀렸다.
- 6으로만 하는게 가장 싼 경우가 있기 때문이다. 그래서 해당 케이스를 추가해서 제출했는데 틀렸다.
- 1으로만 하는게 가장 싼 경우가 있기 때문이다.
반례(1으로만 하는게 가장 싸다 2*12 = 24)
12 2
20 4
15 2
24
코드
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.StringTokenizer;
public class Main {
// 1049
public static void main(String[] args) throws IOException {
process();
}
private static void process() throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st = new StringTokenizer(br.readLine());
final int N = Integer.parseInt(st.nextToken());
final int M = Integer.parseInt(st.nextToken());
final int sixCnt = N / 6;
final int onCnt = N % 6;
int minSixPrice = Integer.MAX_VALUE;
int minOnePrice = Integer.MAX_VALUE;
for (int i = 0; i < M; i++) {
st = new StringTokenizer(br.readLine());
minSixPrice = Math.min(minSixPrice, Integer.parseInt(st.nextToken()));
minOnePrice = Math.min(minOnePrice, Integer.parseInt(st.nextToken()));
}
final int mixPrice = minSixPrice * sixCnt + minOnePrice * onCnt;
final int onlySixPrice = (sixCnt+1) * minSixPrice;
final int onlyOnePrice = minOnePrice * N;
bw.write(Math.min(onlyOnePrice, Math.min(mixPrice, onlySixPrice)) + "");
bw.flush();
bw.close();
br.close();
}
}
'알고리즘' 카테고리의 다른 글
백준 1940 주몽 (0) | 2024.09.18 |
---|---|
백준 1748 수 이어 쓰기 1 (2) | 2024.09.17 |
백준 1302 베스트셀러 (0) | 2024.09.16 |
백준 1269 대칭 차집합 (2) | 2024.09.14 |
백준 10825 국영수 (0) | 2024.09.13 |
Comments