[문제]
https://www.acmicpc.net/problem/20207
[풀이]
s~e일까지 cnt를 증가시켜준다.
캘린더의 일정이 끊이지 않고 연속된 길이가 잘라야 할 코팅지의 width가 되고 이때의 height는 그 날의 최대 일정의 수이다.
[코드]
package 그리디;
import java.util.*;
import java.io.*;
public class boj_20207_달력 {
static int n;
static int[] cnt;
public static void main(String[] args) throws Exception{
//일정의 개수와 각 일정의 시작날짜, 종료날짜가 주어질 때 수현이가 자르는 코팅지의 면적을 구해보자.
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
cnt = new int[366];
StringTokenizer st;
for(int i=0; i<n; i++){
st = new StringTokenizer(br.readLine());
int s = Integer.parseInt(st.nextToken());
int e = Integer.parseInt(st.nextToken());
for(int j=s; j<=e; j++){
cnt[j]++;
}
}
int sum = 0;
int width = 0, height = 0;
for(int i=1; i<=365; i++){
if (cnt[i] == 0) {
sum += height*width;
height = width = 0;
continue;
}
width++;
height = Math.max(height, cnt[i]);
}
sum += height*width;
System.out.println(sum);
}
}
'알고리즘 공부 및 문제 풀이 > 백준(BOJ)' 카테고리의 다른 글
[boj] 백준 1548 부분 삼각 수열 (Java) - 완전탐색 (0) | 2023.05.12 |
---|---|
[boj] 백준 17413 단어 뒤집기 (Java) - 스택 (0) | 2023.05.05 |
[boj] 백준 15661 스타트 링크 (Java) - 완전탐색 (0) | 2023.05.05 |
[boj] 백준 12933 오리 (Java) - 그리디 (0) | 2023.05.05 |
[boj] 백준 2615 오목 (Java) - 완전탐색 (0) | 2023.05.04 |