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
- algorithm
- UnrealEngine5
- Unreal Engine5
- 프로그래머스
- Frustum
- 1563
- RVO
- 티스토리챌린지
- DirectX11
- C
- NRVO
- DeferredRendering
- 언리얼엔진5
- Programmers
- directx
- 줄 세우기
- 2294
- GeeksForGeeks
- RootMotion
- 팰린드롬 만들기
- C++
- UE5
- softeer
- IFileDialog
- 오블완
- 백준
- baekjoon
- const
- winapi
- UnrealEngine4
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 20057번 : 마법사 상어와 토네이도 본문
https://www.acmicpc.net/problem/20057
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
int tornadoDir[4][2] = { {0,-1}, {1,0}, {0,1}, {-1,0} }; // 2칸마다 이동거리+1씩
int sendDir[4][10][3] =
{
{
{0,-2,5}, {-1,-1,10}, {1,-1,10}, {-1,0,7}, {1,0,7}, {-2,0,2}, {2,0,2},{-1,1,1}, {1,1,1}, {0,-1,100}
} ,
{
{2,0,5}, {1,-1,10}, {1,1,10}, {0,-1,7}, {0,1,7},{0,-2,2}, {0,2,2}, {-1,-1,1}, {-1,1,1}, {1,0,100}
},
{
{0,2,5}, {-1,1,10}, {1,1,10}, {-1,0,7}, {1,0,7},{-2,0,2}, {2,0,2},{-1,-1,1}, {1,-1,1}, {0,1,100}
},
{
{-2,0,5}, {-1,-1,10}, {-1,1,10}, {0,-1,7}, {0,1,7}, {0,-2,2}, {0,2,2}, {1,-1,1}, {1,1,1}, {-1,0,100}
}
};
int n;
int arr[501][501] = { 0 };
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
int curY = n / 2; // 토네이도 위치.
int curX = n / 2;
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
cin >> arr[i][j];
}
}
int answer = 0;
int dirIndex = 0;
int moveCount = 0;
while (1)
{
if (dirIndex % 2 == 0) ++moveCount;
for (int i = 0; i < moveCount; ++i)
{
int nextY = curY + tornadoDir[dirIndex][0];
int nextX = curX + tornadoDir[dirIndex][1];
float send = arr[nextY][nextX];
for (int j = 0; j < 10; ++j)
{
int sendNextY = nextY + sendDir[dirIndex][j][0];
int sendNextX = nextX + sendDir[dirIndex][j][1];
float ratio = sendDir[dirIndex][j][2];
if (sendNextY < 0 || sendNextY >= n || sendNextX < 0 || sendNextX >= n)
{
if (j == 9)
{
answer += arr[nextY][nextX];
arr[nextY][nextX] = 0;
}
else
{
answer += floor(send * (ratio / 100));
arr[nextY][nextX] -= floor(send * (ratio / 100));
}
}
else
{
if (j == 9)
{
arr[sendNextY][sendNextX] += arr[nextY][nextX];
arr[nextY][nextX] = 0;
}
else
{
arr[sendNextY][sendNextX] += floor(send * (ratio / 100));
arr[nextY][nextX] -= floor(send * (ratio / 100));
}
}
}
curY = nextY;
curX = nextX;
if (curY == 0 && curX == 0) break;
}
if (curY == 0 && curX == 0) break;
++dirIndex;
if (dirIndex == 4) dirIndex = 0;
}
cout << answer;
}
|
cs |
다른 시리즈와 마찬가지로 구현은 어렵지 않고, 룩업테이블 작성하는 것만 조금 귀찮았다(sendDir).
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 1874번 : 스택 수열 (0) | 2023.09.08 |
---|---|
[Algorithm] Baekjoon 20058번 : 마법사 상어와 파이어스톰 (0) | 2023.09.07 |
[Algorithm] Baekjoon 20056번 : 마법사 상어와 파이어볼 (0) | 2023.09.05 |
[Algorithm] Baekjoon 21610번 : 마법사 상어와 비바라기 (0) | 2023.09.05 |
[Algorithm] Baekjoon 1912번 : 연속합 (0) | 2023.09.04 |