시간 & 메모리 제한
문제
입력 & 출력
예제
알고리즘 풀이
package com.Back;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Back_10163 {
static int [][] map = new int[101][101];
static int num;
static int result[];
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
num = Integer.parseInt(br.readLine());
result = new int[num];
for (int t = 1; t <= num; t++) {
StringTokenizer st = new StringTokenizer(br.readLine());
int x = Integer.parseInt(st.nextToken());
int y = Integer.parseInt(st.nextToken());
int width=Integer.parseInt(st.nextToken());
int height=Integer.parseInt(st.nextToken());
for (int i = y; i < height+y; i++) {
for (int j = x; j < width+x; j++) {
map[i][j]=t;
}
}
}
for (int i = 0; i < 101; i++) {
for (int j = 0; j < 101; j++) {
if(map[i][j]!=0) {
result[map[i][j]-1]++;
}
}
}
for(int ans : result) {
System.out.println(ans);
}
}
}
'Algorithm > 백준 알고리즘' 카테고리의 다른 글
백준_12865 평범한 배낭(자바) / DP (0) | 2021.04.13 |
---|---|
백준_2293 동전1(자바) / DP (0) | 2021.04.08 |
백준_2583 영역 구하기(자바) / DFS (0) | 2021.04.06 |
백준_11725 트리의 부모 찾기 (자바) / 자료구조 & dfs (0) | 2021.04.05 |
백준_1158 요세푸스 문제(자바) / 자료구조 (0) | 2021.04.04 |