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
- DP
- 일본 여행
- 후쿠오카 캐널시티
- IOS
- 너비 우선 탐색
- 미로찾기
- BOJ
- 후쿠오카 4박 5일
- 플로이드
- dfs
- BFS
- 삼성테스트
- 후쿠오카
- queue
- 삼성시험
- 백준
- 플로이드 와샬
- 후쿠오카 요도바시 하카타
- 삼성 SW 테스트
- 완전 탐색
- 다이나믹 프로그래밍
- 알고리즘
- 시뮬레이션
- 하카타역
- 후쿠오카 여행경비
- 큐
- 완전탐색
- deque
- 깊이 우선 탐색
- brute force
Archives
- Today
- Total
맛있는감귤
BOJ : 9328 열쇠 본문
문제 : https://www.acmicpc.net/problem/9328
출처
ACM-ICPC > Regionals > Europe > Northwestern European Regional Contest > Benelux Algorithm Programming Contest > BAPC 2013 Preliminaries K번
생각보다 많이 삽질한 문제였다.
최소 경로를 구하는 것은 아니기 때문에 열쇠가 없는 문은 대기 큐에 넣어 놓고 열쇠를 구했을 때 다시 큐에 넣어주는 방식으로 해결했다.
만약 입력받을 때 요소를 구분한다면 순서가 중요하다. 왜냐하면 A와 a가 전부 테두리에 있을 수도 있기 때문이다.
#include <iostream> #include <queue> using namespace std; int pr[4] = {1,-1,0,0}; int pc[4] = {0,0,1,-1}; int main(){ int T; cin>>T; while(T--){ int H,W,ans=0; char map[101][101]; bool visited[101][101]={0,}; queue<pair<int, int>> q; queue<pair<int, int>> door[26]; bool keys[26]={0,}; string key; cin>>H>>W; for(int i=0;i<H;i++) cin>>map[i]; cin>>key; if(key.at(0) != '0'){ for(int i=0;i<key.size();i++){ keys[key.at(i)-'a']=true; } } for(int i=0;i<H;i++) for(int j=0;j<W;j++) if(i==0 || i==H-1 || j==0 || j==W-1) if(map[i][j]!='*') q.push(make_pair(i, j)); while(!q.empty()){ int r = q.front().first, c = q.front().second; char pos = map[r][c]; q.pop(); if(isupper(pos)) { if(keys[pos-'A']) map[r][c]='.'; else{ door[pos-'A'].push(make_pair(r, c)); continue; } } else if(islower(pos)) { int k = pos-'a'; while(!door[k].empty()){ q.push(make_pair(door[k].front().first, door[k].front().second)); door[k].pop(); } keys[k] = true; map[r][c]='.'; } else if(pos == '$') { map[r][c]='.'; ans++; } for(int i=0;i<4;i++) { int nr = r+pr[i], nc = c+pc[i]; if(nr <0 || nc <0 || nr >=H || nc >=W) continue; if(visited[nr][nc]) continue; if(map[nr][nc] == '*') continue; visited[nr][nc] = true; q.push(make_pair(nr, nc)); } } cout<<ans<<"\n"; } }
'알고리즘 > 백준 알고리즘' 카테고리의 다른 글
BOJ : 12761 돌다리 (0) | 2017.03.03 |
---|---|
BOJ : 2146 다리 만들기 (0) | 2017.03.03 |
BOJ : 1182 부분집합의 합 (0) | 2017.02.22 |
BOJ : 1463 1로 만들기 (0) | 2017.02.21 |
BOJ : 2979 트럭 주차 (0) | 2017.02.21 |