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 |
Tags
- 내적
- Expanding Polytope Algorithm
- C
- c#
- 유니티
- Graham Scan
- 리눅스
- 수학
- SOH
- 분할축 이론
- 알고리즘
- AABB
- 외적
- 문제풀이
- dp
- Doubly Connected Edge List
- 충돌 알고리즘
- 벡터
- Unity
- 다이나믹 프로그래밍
- uclidean algorithm
- linux
- Vector
- C++
- GJK
- ubuntu
- 백준
- PS
- 우분투
- 보로노이다이어그램
Archives
- Today
- Total
마이 플밍 블로그
[C++] 백준 1261 - 알고스팟 본문
풀이
BFS로 풀고 flag로 벽을 부신 횟수를 넣으면 된다.
코드
#include <bits/stdc++.h>
using namespace std;
int dx[4] = {1,-1,0,0};
int dy[4] = {0,0,1,-1};
int board[101][101];
int flag[101][101];
int n, m;
int minAnswer = 1000000000;
bool InMap(int x,int y){
if(0 <= x && x < m && 0 <= y && y < n)
return true;
return false;
}
void BFS(){
queue<pair<int,pair<int,int>>> s;
s.push(make_pair(1,make_pair(0,0)));
while(!s.empty()){
int c = s.front().first;
int x = s.front().second.first;
int y = s.front().second.second;
s.pop();
if(!InMap(x,y))
continue;
if(minAnswer <= c)
continue;
if(flag[y][x] != 0 && flag[y][x] <= c)
continue;
//cout << x << " " << y << " " << c << endl;
if(x == m-1 && y == n-1){
minAnswer = min(c, minAnswer);
flag[y][x] = minAnswer;
continue;
}
flag[y][x] = c;
for(int i =0;i < 4; i++){
int nx = x + dx[i];
int ny = y + dy[i];
if(!InMap(nx,ny))
continue;
if(board[y][x] == 1)
s.push(make_pair(c+1,make_pair(nx,ny)));
else
s.push(make_pair(c,make_pair(nx,ny)));
}
}
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> m >> n;
for(int y = 0;y < n; y++){
string a;
cin >> a;
for(int i = 0; i < a.length(); i++){
board[y][i] = ((int)a[i]) - ((int)'0');
}
}
BFS();
cout << minAnswer-1;
return 0;
}
'문제풀이 > 백준' 카테고리의 다른 글
[C++] 백준 18223 - 민준이와 마산 그리고 건우 (1) | 2023.10.09 |
---|---|
[C++] 백준 1504 - 특정한 최단 경로 (1) | 2023.10.09 |
[C++] 백준 11779 - 최소비용 구하기 2 (1) | 2023.10.08 |
[C++] 백준 2234 - 성곽 (1) | 2023.10.07 |
[C++] 백준 14442 - 벽 부수고 이동하기 2 (1) | 2023.10.07 |