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 | 31 |
Tags
- 백준
- C++
- DeferredRendering
- UnrealEngine4
- 1563
- directx
- NRVO
- 줄 세우기
- RootMotion
- IFileDialog
- 언리얼엔진5
- softeer
- 팰린드롬 만들기
- winapi
- UE5
- Programmers
- RVO
- GeeksForGeeks
- const
- 프로그래머스
- 2294
- DirectX11
- Frustum
- C
- algorithm
- 티스토리챌린지
- 오블완
- UnrealEngine5
- Unreal Engine5
- baekjoon
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 16967번 :: 배열 복원하기 본문
https://www.acmicpc.net/problem/16967
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
|
int b[602][602] = { 0 };
int h, w, x, y;
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> h >> w >> x >> y;
for (int i = 0; i < h+x; ++i)
{
for (int j = 0; j < w+y; ++j)
{
cin >> b[i][j];
}
}
for (int i = x; i < h; ++i)
{
for (int j = y; j < w; ++j)
{
int temp = b[i][j] - b[i - x][j - y];
int temp2 = b[i][j] - temp;
b[i][j] -= temp2;
int asdf = 0;
}
}
for (int i = 0; i < h; ++i)
{
for (int j = 0; j < w; ++j)
{
printf("%d ", b[i][j]);
}
printf("\n");
}
return 0;
}
|
cs |
출력할때 한칸씩 띄워서 출력해야 한단것만 알면 크게 어려울 것 없는 문제.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2632번 :: 피자판매 (2) | 2023.05.10 |
---|---|
[Algorithm]Baekjoon 18428번 :: 감시 피하기 (1) | 2023.05.10 |
[Algorithm]Baekjoon 16918번 :: 봄버맨 (0) | 2023.05.10 |
[Algorithm]Baekjoon 3109번 :: 빵집 (0) | 2023.05.09 |
[Algorithm]Baekjoon 17182번 :: 우주 탐사선 (0) | 2023.05.09 |