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 | 31 |
Tags
- windows apache wsgi 에러
- 원격 연결 포트 포워딩
- windows 원격 연결 설정
- 1188 음식 평론가
- django 웹 페이지
- 2961 java
- django windows 배포 에러
- 18233 java
- 2661 java
- 2961 도영이가 만든 맛있는 음식
- 18233 비트마스킹
- django
- 18233 러버덕
- django settings.py
- Problems occurred while performing provisioning operation
- 14711 java
- django The requested operation has failed!
- django httpd error
- 2643 색종이 올려 놓기
- java di
- django apache deploy error
- 공유기 원격 설정
- The requested operation has failed!
- 2661 좋은 수열
- 14711 타일 뒤집기
- 1188 java
- django 프로젝트 시작
- apache pythonpath
- 2643 java
- APPEND_SLASH = FALSE
Archives
라이브러리는 도서관 아닌가요
백준 6068 시간 관리하기 java greedy 본문
https://www.acmicpc.net/problem/6068
예전에 풀었던, 내일 할거야와 같은 종류의 문제
https://www.acmicpc.net/problem/7983
바뀐 것은 불가능한 시간대가 존재하기 때문에, -1로 체크해줘야 한다는 점이다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
StringTokenizer st;
int[][] time = new int[n][2];
for(int i=0; i<n; ++i){
st=new StringTokenizer(br.readLine());
time[i][0] = Integer.parseInt(st.nextToken()); // 걸리는 시간
time[i][1] = Integer.parseInt(st.nextToken()); // 마감 시간
}
Arrays.sort(time, (e1, e2) -> {
if(e1[1] == e2[1]) return e1[0] - e2[0];
else return e1[1] - e2[1];
});
int nMinus1 = n-1;
int lastIdx = time[nMinus1][1]; // 가장 마지막 마감 시간 저장
for(int i=nMinus1; -1<i; --i){
if(time[i][1] <= lastIdx){
lastIdx = time[i][1] - time[i][0];
}
else {
lastIdx -= time[i][0];
}
}
if(lastIdx < 0){
lastIdx = -1;
}
System.out.println(lastIdx);
}
}
'알고리즘 문제' 카테고리의 다른 글
백준 1188 음식 평론가 java (greedy, gcd) (0) | 2022.09.22 |
---|---|
백준 5002 도어맨 java greedy (0) | 2022.09.09 |
백준 (BOJ) 4781 사탕가게 java greedy (0) | 2022.09.08 |
백준 (BOJ) 25391 특별상 java greedy (0) | 2022.09.07 |
백준 (BOJ) 10710 실크로드 java dp (0) | 2022.08.24 |
Comments