- 풀이
크기가 366까지 되있는 array 배열에 입력의 시작을 1, 끝을 -1로 초기화 시켜줍니다.
1. 반복문을 돌며 연결되어 있는 시작과 끝은 시작 인덱스만 초기화 시켜주며 최대 높이만 구해줍니다.
2. 끝이 발견되면 answer에 직사각형의 최대높이*길이를 통해 구해주고 변수를 0으로 초기화 시킵니다.
위의 작업을 1년인 365일의 +1일까지 작업해줍니다.
- 코드
import java.io.IOException;
import java.io.InputStream;
import java.util.*;
public class Main {
static int answer;
public static void main(String[] args) throws Exception {
SetData();
System.out.println(answer);
}
// 데이터
private static void SetData() throws Exception {
InputReader in = new InputReader(System.in);
answer = 0;
int N = in.nextInt();
int[] array = new int[367];
for (int i = 0; i < N; i++) {
array[in.nextInt()]++;
array[in.nextInt()+ 1]--;
}
int start = 0;
int height = 0;
int connect = 0;
for (int i = 0; i <= 366; i++) {
connect += array[i]; // 연결이 더이상 안될 때 0이될 때를 체크해주기 위
height = Math.max(height, connect); // height
if (start == 0 && connect != 0) {
start = i;
} else if (start != 0 && connect == 0) {
answer += (i - start) * height;
start = 0;
height = 0;
}
}
}
}
class InputReader {
private final InputStream stream;
private final byte[] buf = new byte[8192];
private int curChar, snumChars;
public InputReader(InputStream st) {
this.stream = st;
}
public int read() {
if (snumChars == -1)
throw new InputMismatchException();
if (curChar >= snumChars) {
curChar = 0;
try {
snumChars = stream.read(buf);
} catch (IOException e) {
throw new InputMismatchException();
}
if (snumChars <= 0)
return -1;
}
return buf[curChar++];
}
public int nextInt() {
int c = read();
while (isSpaceChar(c)) {
c = read();
}
int sgn = 1;
if (c == '-') {
sgn = -1;
c = read();
}
int res = 0;
do {
res *= 10;
res += c - '0';
c = read();
} while (!isSpaceChar(c));
return res * sgn;
}
public long nextLong() {
int c = read();
while (isSpaceChar(c)) {
c = read();
}
int sgn = 1;
if (c == '-') {
sgn = -1;
c = read();
}
long res = 0;
do {
res *= 10;
res += c - '0';
c = read();
} while (!isSpaceChar(c));
return res * sgn;
}
public int[] nextIntArray(int n) {
int a[] = new int[n];
for (int i = 0; i < n; i++) {
a[i] = nextInt();
}
return a;
}
public String nextLine() {
int c = read();
while (isSpaceChar(c))
c = read();
StringBuilder res = new StringBuilder();
do {
res.appendCodePoint(c);
c = read();
} while (!isEndOfLine(c));
return res.toString();
}
public boolean isSpaceChar(int c) {
return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
}
private boolean isEndOfLine(int c) {
return c == '\n' || c == '\r' || c == -1;
}
}
'algorithm' 카테고리의 다른 글
[BOJ/JAVA] 백준 16930번 : 달리기 (0) | 2022.01.17 |
---|---|
[BOJ/JAVA] 백준 12919번 : A와 B 2 (0) | 2021.12.07 |
[BOJ/JAVA] 백준 1706번 : 크로스워드 (0) | 2021.11.19 |
[BOJ/JAVA] 백준 11497번 : 통나무 건너뛰기 (0) | 2021.11.09 |
[BOJ/JAVA] 백준 2636번 : 치즈 (0) | 2021.11.08 |