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
- UE5
- Unreal Engine5
- const
- DeferredRendering
- 프로그래머스
- 백준
- winapi
- 티스토리챌린지
- C
- baekjoon
- Programmers
- directx
- algorithm
- Frustum
- softeer
- UnrealEngine4
- C++
- 언리얼엔진5
- 오블완
- 2294
- DirectX11
- GeeksForGeeks
- RootMotion
- NRVO
- UnrealEngine5
- 팰린드롬 만들기
- 1563
- IFileDialog
- 줄 세우기
- RVO
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1261번 :: 알고스팟 본문
https://www.acmicpc.net/problem/1261
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
|
struct Node
{
int y;
int x;
};
int n, m;
int arr[100][100];
int dist[100][100];
int dirs[4][2] = { {-1,0}, {1,0}, {0,-1}, {0,1} };
void BFS()
{
memset(dist, 0x3f, sizeof(dist));
queue<Node> q;
q.push({ 0,0 });
dist[0][0] = 0;
while (!q.empty())
{
int curY = q.front().y;
int curX = q.front().x;
q.pop();
for (int i = 0; i < 4; ++i)
{
int nextY = curY + dirs[i][0];
int nextX = curX + dirs[i][1];
if (nextY < 0 || nextY == n) continue;
if (nextX < 0 || nextX == m) continue;
if (dist[curY][curX] + arr[nextY][nextX] < dist[nextY][nextX])
{
dist[nextY][nextX] = dist[curY][curX] + arr[nextY][nextX];
q.push({ nextY,nextX });
}
}
}
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> m >> n;
for (int i = 0; i < n; ++i)
{
string s;
cin >> s;
for (int j = 0; j < s.size(); ++j)
{
arr[i][j] = s[j] - '0';
}
}
BFS();
cout << dist[n - 1][m - 1];
}
|
cs |
내가 어떤 유형에 약한지 알 수 있었던 문제..
문제난이도를 객관적으로 봤을땐 사실 빨리 풀었어야했는데 그러지 못했다.
생각해보니 네오플코테 봤을때도 이런 유형이였던거같은데...
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 18352번 :: 특정 거리의 도시 찾기 (0) | 2023.10.12 |
---|---|
[Algorithm]Baekjoon 4485번 :: 녹색 옷 입은 애가 젤다지? (0) | 2023.10.12 |
[Algorithm]Baekjoon 12908번 :: 텔레포트 3 (2) | 2023.10.11 |
[Algorithm]Baekjoon 29792번 :: 규칙적인 보스돌이 (1) | 2023.10.11 |
[Algorithm] Baekjoon 1062번 : 가르침 (0) | 2023.10.10 |