티스토리 뷰
https://www.acmicpc.net/problem/3055
백준 소스코드 [C++] 3055 탈출
#include <iostream>
#include <algorithm>
#include <queue>
#include <string>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string.h>
#include <set>
#include <map>
#include <unordered_map>
#include <sstream>
#include <cstdlib>
#include <cassert>
#define all(v) v.begin(), v.end()
#define pii pair<int, int>
#define pli pair<ll, int>
#define make_unique(v) sort(all(v)), v.erase(unique(all(v)), v.end())
typedef long long ll;
using namespace std;
struct dot {
int y, x;
};
dot D;
string s[52];
bool vis[52][52];
int time = 0;
int dx[4] = { 1,0,-1,0 }, dy[4] = { 0,1,0,-1 };
bool chk = false;
queue<dot> qs, qw;
void bfs() {
while (!qs.empty()) {
time++;
int SIZE = qw.size();
for(int j=0;j<SIZE;j++) {
dot water = qw.front();
qw.pop();
for (int i = 0;i < 4;i++) {
int Y = water.y + dy[i];
int X = water.x + dx[i];
if (s[Y][X] == '.') {
qw.push({ Y,X });
s[Y][X] = '*';
vis[Y][X] = true;
}
}
}
SIZE = qs.size();
for (int j = 0;j < SIZE;j++) {
dot gosm = qs.front();
qs.pop();
for (int i = 0;i < 4;i++) {
int Y = gosm.y + dy[i];
int X = gosm.x + dx[i];
if (s[Y][X] == '.' && vis[Y][X]==false) {
qs.push({ Y,X });
vis[Y][X] = true;
}
else if (s[Y][X] == 'D') {
chk = true;
return;
}
}
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, m;
cin >> n >> m;
s[0].resize(m + 2, '#');
s[n+1].resize(m + 2, '#');
for (int i = 1;i <= n;i++) {
cin >> s[i];
s[i] = "#" + s[i] + "#";
for (int j = 1;j <= m;j++) {
if (s[i][j] == 'D') D = { i,j };
else if (s[i][j] == 'S') {
qs.push({ i,j });
vis[i][j] = true;
}
else if (s[i][j] == '*') {
qw.push({ i,j });
vis[i][j] = true;
}
}
}
bfs();
if (chk == true)
cout << time;
else cout << "KAKTUS";
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 1039 교환 (0) | 2021.07.06 |
---|---|
백준 소스코드 [C++] 11003 최솟값 찾기 (0) | 2021.07.06 |
백준 소스코드 [C++] 2805 나무자르기 (0) | 2021.07.05 |
백준 소스코드 [C++] 1759 암호 만들기 (0) | 2021.06.11 |
백준 소스코드 [C++] 17070 파이프 옮기기 1 (0) | 2021.06.06 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 포드 풀커슨 알고리즘
- test coverage
- 네트워크 플로우
- WWDC21
- 컴퓨터 추상화
- Testable
- 다익스트라 시간복잡도
- mach-o
- WWDC19
- 최단경로 알고리즘
- 벨만포드 알고리즘
- WWDC17
- 네트워크 유량
- MeTal
- IOS
- HIG
- 에드몬드 카프 알고리즘
- State Restoration
- 부스트캠프 6기
- 벨만포드 시간복잡도
- 최단경로문제
- CPU와 Memory
- 최단경로 문제
- WWDC16
- 코딩대회
- observeOn
- 강한 순환 참조
- 최대 매칭
- CompositionalLayout
- rxswift
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함