백준의 무한부스터(17391) 문제이다.
[ 문제 바로가기 ]
[ 문제풀이 ]
1) 출발점에서 도착점까지 가는데 아이템을 획득하게 되는 최소 갯수를 출력해야 하는 문제인데, 모든 좌표에
아이템이 존재하기 때문에 사실상 최단경로를 묻는 문제인 것 같았다...
본인은 이 문제를 단순 BFS로 탐색을 진행해 주었다.
Queue에서는 [ x좌표 , y좌표 , 주운 아이템의 갯수 ] 를 관리해 주었다.
[ 소스코드 ]
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 | #include<iostream> #include<queue> #define endl "\n" #define MAX 300 using namespace std; int N, M; int MAP[MAX][MAX]; bool Visit[MAX][MAX]; int dx[] = { 0, 1 }; int dy[] = { 1, 0 }; void Input() { cin >> N >> M; for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { cin >> MAP[i][j]; } } } void Solution() { queue<pair<pair<int, int>, int>> Q; Q.push(make_pair(make_pair(0, 0), 0)); Visit[0][0] = 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 == N - 1 && y == M - 1) { cout << Cnt << endl; return; } for (int i = 0; i < 2; i++) { for (int k = 1; k <= MAP[x][y]; k++) { int nx = x + dx[i] * k; int ny = y + dy[i] * k; if (nx >= 0 && ny >= 0 && nx < N && ny < M) { if (Visit[nx][ny] == false) { Visit[nx][ny] = true; Q.push(make_pair(make_pair(nx, ny), Cnt + 1)); } } } } } } 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 -' 카테고리의 다른 글
[ 백준 16431 ] 베시와 데이지 (C++) (0) | 2020.03.09 |
---|---|
[ 백준 11586 ] 지영 공주님의 마법 거울 (C++) (0) | 2020.03.06 |
[ 백준 16955 ] 오목, 이길 수 있을까 ? (C++) (0) | 2020.03.06 |
[ 백준 16988 ] Baaaaaaaaaduk2 (Easy) (C++) (4) | 2020.03.05 |
[ 백준 13911 ] 집 구하기 (C++) (4) | 2020.03.03 |