Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MST
- yolo
- 평창동계올림픽
- 다음 지도 api
- 외판원 순회
- 캘리그라피
- 안드로이드 스튜디오
- 다음 API
- 삼성 코딩테스트
- Segment Tree
- 위상정렬
- 비트마스크
- 영어회화 100일의 기적
- upper_bound
- 이분탐색
- lower_bound
- 창훈쓰다
- 언어의 온도
- 백트레킹
- DP
- multiset
- 생활코딩
- boj
- BOJ 2098
- 성화봉송주자
- 그리디 알고리즘
- 성화봉송
- BFS
- 인간이 그리는 무늬
- 다이나믹 프로그래밍
Archives
- Today
- Total
Hoon222y
[BOJ 2206] 벽 부수고 이동하기 본문
https://www.acmicpc.net/problem/2206
음 ... 딱봐도 bfs 문제이다. 문제접근을
1) bfs 로 이동
2) 벽을 깨고 이동하는 경우와 아닌 경우를 구분해서 구현
이렇게 접근을 하는데 방문했던 지점을 어떻게 처리를 해야할지를 몰라서 해맸다 ...
방법은 3차원 visit배열을 구현하여 벽을 깬적이 없으면 [y][x][1]부분에, 깬적이 있으면 [y][x][2]부분에서 visit처리를 해주었다.
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 | #include <iostream> #include <cstdio> #include <vector> #include <cstring> #include <queue> using namespace std; int n,m,arr[1111][1111], ans; bool visit[1111][111][3]; queue<pair<int,pair<int,pair<int,int>>>> q; int dx[4] = {1,-1,0,0}; int dy[4] = {0,0,1,-1}; bool chk(int a,int b){ return a<=n && a>=1 && b<=m && b>=1; } int main(){ memset(visit,false,sizeof(visit)); ans = 100000000; scanf("%d%d" , &n,&m); for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ scanf("%1d" , &arr[i][j]); } } q.push({1,{1,{0,1}}}); while(!q.empty()){ int y = q.front().first; int x = q.front().second.first; int c = q.front().second.second.first; int cnt = q.front().second.second.second; q.pop(); if(x == m && y == n){ if(ans>cnt){ ans = cnt; } continue; } if(c == 0){ for(int i=0;i<4;i++){ int xx = x+dx[i]; int yy = y+dy[i]; if(chk(yy,xx) && visit[yy][xx][1] == false){ if(arr[yy][xx] == 1){ q.push({yy,{xx,{1,cnt+1}}}); visit[yy][xx][2] = true; }else{ q.push({yy,{xx,{0,cnt+1}}}); visit[yy][xx][1] = true; } } } }else if(c == 1){ for(int i=0;i<4;i++){ int xx = x+dx[i]; int yy = y+dy[i]; if(chk(yy,xx) && visit[yy][xx][2] ==false){ if(arr[yy][xx] == 0){ q.push({yy,{xx,{1,cnt+1}}}); visit[yy][xx][2] = true; } } } } } if(ans == 100000000){ printf("-1\n"); return 0; } printf("%d\n" ,ans); return 0; } | cs |
※느낀점 - 아 struct 사용하자 ㅋㅋㅋㅋㅋㅋㅋpair노답 ㅋㅋㅋㅋㅋㅋ
'코딩 > BOJ & 알고스팟' 카테고리의 다른 글
[BOJ 14499] 주사위 굴리기 (2) | 2017.04.11 |
---|---|
[BOJ 13460] 째로탈출2 (0) | 2017.04.11 |
[BOJ 1613] 역사 (1) | 2017.03.28 |
[BOJ 1201] NMK (1) | 2017.03.06 |
[BOJ 2293,2294] 동전 1,2 (0) | 2017.03.04 |
Comments