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
- 티스토리챌린지
- RootMotion
- softeer
- UE5
- algorithm
- directx
- Unreal Engine5
- DeferredRendering
- 언리얼엔진5
- NRVO
- 2294
- UnrealEngine4
- GeeksForGeeks
- Frustum
- C++
- 프로그래머스
- RVO
- DirectX11
- 1563
- winapi
- IFileDialog
- baekjoon
- Programmers
- C
- const
- UnrealEngine5
- 백준
- 팰린드롬 만들기
- 오블완
- 줄 세우기
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 17070번 :: 파이프 옮기기 1 본문
https://www.acmicpc.net/problem/17070
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
|
struct Node
{
int y;
int x;
int type;
};
vector<vector<pair<int,int>>> dir =
{
{{0,1},{-1,-1}, {1,1}},
{{-1,-1}, {1,0},{1,1}},
{{0,1},{1,0},{1,1}}
};
int n = 0;
int arr[18][18] = { 0 };
bool check[18][18][3] = { 0 };
int result = 0;
void BFS()
{
queue<Node> q;
q.push({ 1,2,0 });
while (!q.empty())
{
Node curNode = q.front();
q.pop();
int curY = curNode.y;
int curX = curNode.x;
int curType = curNode.type;
if (curY == n && curX == n)
{
result++;
continue;
}
for (int i = 0; i < dir[curType].size(); i++)
{
if (dir[curType][i].first == -1) continue;
int nextY = curY + dir[curType][i].first;
int nextX = curX + dir[curType][i].second;
if (arr[nextY][nextX] == 1) continue;
if (i == 2)
{
if (arr[nextY - 1][nextX] == 1 || arr[nextY][nextX - 1] == 1) continue;
}
q.push({ nextY,nextX,i });
}
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
for (int i = 0; i < 18; i++)
{
for (int j = 0; j < 18; j++)
{
arr[i][j] = 1;
}
}
cin >> n;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
{
cin >> arr[i][j];
}
}
BFS();
cout << result;
}
|
cs |
문제 이해하자마자 그냥 BFS코드가 떠올라서 BFS로 짰는데 생각보다 성능이 안좋아서 다른 사람풀이를 봤더니 대체로 백트래킹으로 짰고.. 성능도 좀 더 좋았다.
뭐 위 코드도 통과는 되서 그냥 다른 문제로 넘어가도 되지만, 다른 유형으로도 푸는거에 많이 익숙해져야해서 백트래킹으로도 풀었다.
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
|
vector<vector<pair<int, int>>> dir =
{
{{0,1},{-1,-1}, {1,1}},
{{-1,-1}, {1,0},{1,1}},
{{0,1},{1,0},{1,1}}
};
int n;
int result;
int arr[18][18];
void DFS(int sy, int sx, int type)
{
if (sy == n && sx == n)
{
result++;
return;
}
for (int i = 0; i < dir[type].size(); i++)
{
if (dir[type][i].first == -1) continue;
int nextY = sy + dir[type][i].first;
int nextX = sx + dir[type][i].second;
if (arr[nextY][nextX] == 1) continue;
if (i == 2)
{
if (arr[nextY - 1][nextX] == 1 || arr[nextY][nextX - 1] == 1) continue;
}
DFS(nextY, nextX, i);
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
for (int i = 0; i < 18; i++)
{
for (int j = 0; j < 18; j++)
{
arr[i][j] = 1;
}
}
cin >> n;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
{
cin >> arr[i][j];
}
}
DFS(1, 2, 0);
cout << result;
}
|
cs |
260ms가 BFS로 푼거고 108ms가 백트래킹으로 푼 문제다. 성능차이가 2배넘게 난다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1504번 :: 특정한 최단 경로 (0) | 2022.12.13 |
---|---|
[Algorithm]Baekjoon 1043번 :: 거짓말 (0) | 2022.12.13 |
[Algorithm]Baekjoon 15686번 :: 치킨 배달 (0) | 2022.12.09 |
[Algorithm]Baekjoon 12865번 :: 평범한 배낭 (0) | 2022.12.08 |
[Algorithm]Baekjoon 9251번 :: LCS (0) | 2022.12.07 |