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 |
Tags
- 이득우
- 구현
- UI 자동화
- 유니티
- c++
- fsm
- c#
- DFS
- unity
- 안드로이드
- 인프런
- 재귀
- 알고리즘
- unreal
- BFS
- 이분탐색
- 시리얼라이제이션
- 운영체제
- 백준
- 언리얼
- 너비우선탐색
- 유한상태기계
- 웅진씽크빅
- binary_search
- lower_bound
- 프로그래머스
- 개발일지
- 게임개발공모전
- 게임개발
- upper_bound
Archives
- Today
- Total
초고교급 희망
[백준][C++]2563번 색종이 본문
728x90
#include <iostream>
using namespace std;
bool whitepaper[101][101] = {0, };
int colorpapernumber, ans;
void color(int x, int y)
{
for (int i = 0; i < 10; i++)
{
for (int j = 0; j < 10; j++)
{
whitepaper[x + i][y + j] = true;
}
}
}
int areacalculate(bool graph[101][101])
{
int area = 0;
for (int i = 0; i < 100; i++)
{
for (int j = 0; j < 100; j++)
{
if (graph[i][j])
{
area++;
}
}
}
return area;
}
int main() {
cin >> colorpapernumber;
for (int i = 0; i < colorpapernumber; i++)
{
int xpoint, ypoint;
cin >> xpoint >> ypoint;
color(xpoint, ypoint);
}
ans = areacalculate(whitepaper);
cout << ans;
}
감사합니다
728x90
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준][C++]7490번 0 만들기 (0) | 2023.06.05 |
---|---|
[백준][C++]14503번 로봇 청소기 (0) | 2023.05.24 |
[백준][C++]11404번 플로이드 (0) | 2022.09.27 |
[백준][C++]2805번 나무 자르기 (0) | 2022.05.16 |
[백준][C++]1072번 게임 (0) | 2022.05.16 |