기술 블로그

2563번 색종이 본문

알고리즘 문제/BOJ

2563번 색종이

parkit 2018. 9. 24. 20:38
728x90
반응형

단순히 사각형의 넓이를 index로 계산하려고 하면 꼬여버리는 복잡한 문제가 될 수 있다.


하지만, 쉽게 푸는 방법이 있는데 


100*100 칸에 칠해져 있는 칸의 개수만 세면 되는 방법이다.



https://www.acmicpc.net/problem/2563




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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <iostream>
#include <queue>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
 
using namespace std;
 
bool map[101][101= { false, };
 
int N = 0;
 
void coloredPaper(int r, int c)
{
    for (int i =  r + 1; i <= r + 10; i++)
    {
        for (int j = c + 1; j <= c + 10; j++)
        {
            if (map[i][j]) continue;
 
            map[i][j] = true;
        }
    }
}
 
int searchArea()
{
    int area = 0;
 
    for (int i = 1; i <= 100; i++)
    {
        for (int j = 1; j <= 100; j++)
        {
            if (map[i][j]) ++area;
        }
    }
 
    return area;
}
 
int main(void)
{
    int y = 0, x = 0;
 
    memset(map, falsesizeof(map));
 
    scanf("%d"&N);
 
    while (N--)
    {
        scanf("%d %d"&y, &x);
 
        coloredPaper(y, x);
    }
 
    printf("%d\n", searchArea());
 
    return 0;
}
cs


728x90
반응형

'알고리즘 문제 > BOJ' 카테고리의 다른 글

11652번 카드  (0) 2018.09.26
2839번 설탕 배달  (0) 2018.09.24
1707번 이분 그래프  (0) 2018.09.23
11404번 플로이드  (0) 2018.09.22
10814번 나이순 정렬  (0) 2018.09.19