티스토리 뷰
https://www.acmicpc.net/problem/2178
백준 소스코드 [C++] 2178 미로 탐색
#include <iostream>
#include <utility>
#include <vector>
#include <algorithm>
#include <queue>
using namespace std;
int arr[101][101] = { 0 };
int num[101][101];
bool check[101][101] = { false };
pair<int, int>direction[4] = { {-1,0},{1,0},{0,1} ,{0,-1} };
queue<pair<int, int> > q;
void bfs(int n,int m) {
while (q.empty() != true) {
pair<int, int> p = q.front();
q.pop();
for (int a = 0;a < 4;a++)
if (arr[p.first + direction[a].first][p.second + direction[a].second] == 1 &&
check[p.first + direction[a].first][p.second + direction[a].second] == false)
{
q.push({ p.first + direction[a].first, p.second + direction[a].second });
check[p.first + direction[a].first][p.second + direction[a].second] = true;
num[p.first + direction[a].first][p.second + direction[a].second] = num[p.first][p.second] + 1;
}
}
return;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n,m;
string s;
cin >> n >> m;
for (int i = 1;i <= n;i++) {
cin >> s;
for (int j = 1;j <= m;j++)
arr[i][j] = s[j-1]-'0';
}
q.push({ 1,1 });
check[1][1] = true;
num[1][1] = 1;
bfs(n,m);
cout << num[n][m];
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 7569 토마토 (0) | 2020.08.17 |
---|---|
백준 소스코드 [C++] 2667 단지번호붙이기 (0) | 2020.08.17 |
백준 소스코드 [C++] 1992 쿼드트리 (0) | 2020.08.17 |
백준 소스코드 [C++] 1991 트리 순회 (0) | 2020.08.17 |
백준 소스코드 [C++] 1041 주사위 (0) | 2020.08.17 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 코딩대회
- 네트워크 플로우
- 벨만포드 알고리즘
- 다익스트라 시간복잡도
- CPU와 Memory
- observeOn
- rxswift
- 에드몬드 카프 알고리즘
- 최단경로 문제
- MeTal
- mach-o
- 최단경로 알고리즘
- 최대 매칭
- 강한 순환 참조
- 네트워크 유량
- 부스트캠프 6기
- State Restoration
- 컴퓨터 추상화
- WWDC16
- 최단경로문제
- WWDC17
- CompositionalLayout
- WWDC19
- IOS
- test coverage
- 벨만포드 시간복잡도
- Testable
- 포드 풀커슨 알고리즘
- HIG
- WWDC21
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함