백준의 베시와 데이지(16431) 문제이다.
[ 문제 바로가기 ]
[ 문제풀이 ]
1) 베시와 데이지 두 소 모두 존에게 갈 최단 경로만 구하면 되기 때문에 본인은 너비우선탐색(BFS)를 이용해서 접근해
보았다.
베시가 존에게 가는데 걸리는 최소시간을 구하는 BFS 와 데이지가 존에게 가는데 걸리는 최소시간을 구하는 BFS,
총 2번의 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 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 101 | #include<iostream> #include<queue> #include<cstring> #define endl "\n" #define MAX 1010 using namespace std; pair<int, int> Bessy, Daisy, John; bool Visit[MAX][MAX]; int Bdx[] = { -1, -1, -1, 0, 0, 1, 1, 1 }; int Bdy[] = { -1, 0, 1, -1, 1, -1, 0, 1 }; int Ddx[] = { 0, 0, 1, -1 }; int Ddy[] = { 1, -1, 0, 0 }; void Input() { cin >> Bessy.first >> Bessy.second; cin >> Daisy.first >> Daisy.second; cin >> John.first >> John.second; } int BFS(int a, int b, int Idx) { memset(Visit, false, sizeof(Visit)); queue<pair<pair<int, int>, int>> Q; Q.push(make_pair(make_pair(a, b), 0)); Visit[a][b] = true; while (Q.empty() == 0) { int x = Q.front().first.first; int y = Q.front().first.second; int Cnt = Q.front().second; Q.pop(); if (x == John.first && y == John.second) return Cnt; if (Idx == 0) { for (int i = 0; i < 8; i++) { int nx = x + Bdx[i]; int ny = y + Bdy[i]; if (nx >= 0 && ny >= 0 && nx < 1001 && ny < 1001) { if (Visit[nx][ny] == false) { Visit[nx][ny] = true; Q.push(make_pair(make_pair(nx, ny), Cnt + 1)); } } } } else { for (int i = 0; i < 4; i++) { int nx = x + Ddx[i]; int ny = y + Ddy[i]; if (nx >= 0 && ny >= 0 && nx < 1001 && ny < 1001) { if (Visit[nx][ny] == false) { Visit[nx][ny] = true; Q.push(make_pair(make_pair(nx, ny), Cnt + 1)); } } } } } } void Solution() { int Res = BFS(Bessy.first, Bessy.second, 0); int Res2 = BFS(Daisy.first, Daisy.second, 1); if (Res > Res2) cout << "daisy" << endl; else if (Res < Res2) cout << "bessie" << endl; else cout << "tie" << endl; } void Solve() { Input(); Solution(); } int main(void) { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); //freopen("Input.txt", "r", stdin); Solve(); return 0; } | cs |
'[ BOJ Code ] > # BOJ -' 카테고리의 다른 글
[ 백준 11657 ] 타임머신 (C++) (7) | 2020.03.11 |
---|---|
[ 백준 1753 ] 최단경로 (C++) (20) | 2020.03.09 |
[ 백준 11586 ] 지영 공주님의 마법 거울 (C++) (0) | 2020.03.06 |
[ 백준 17391 ] 무한 부스터 (C++) (3) | 2020.03.06 |
[ 백준 16955 ] 오목, 이길 수 있을까 ? (C++) (0) | 2020.03.06 |