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 | 31 |
Tags
- 하카타역
- 후쿠오카 캐널시티
- 완전탐색
- 큐
- dfs
- queue
- 삼성 SW 테스트
- 알고리즘
- 후쿠오카 4박 5일
- 깊이 우선 탐색
- 후쿠오카 여행경비
- 일본 여행
- 플로이드
- 삼성테스트
- 삼성시험
- 완전 탐색
- 다이나믹 프로그래밍
- DP
- 너비 우선 탐색
- BFS
- 후쿠오카
- BOJ
- brute force
- 백준
- 미로찾기
- 시뮬레이션
- 후쿠오카 요도바시 하카타
- deque
- IOS
- 플로이드 와샬
Archives
- Today
- Total
맛있는감귤
BOJ : 3197 백조의 호수 (테스트 케이스 첨부) 본문
문제 : https://www.acmicpc.net/problem/3197
출처
Olympiad > Croatian Highschool Competitions in Informatics > 2005 > National Competition #2 - Seniors 2번
문제 해결 순서
1. 백조의 만남 가능 여부
2. 해빙. 테두리만 녹이기
3. 만날 때까지 반복
해결 방법은 3055 탈출문제와 유사하지만 R, C 값이 1500이기 때문에 백조 만남 가능 여부 탐색시 TLE가 발생할 수도 있다. (이거 때문에 개고생)
문제 해결 방안
제일 처음 백조 이동 후 만날 수 없다면 방문 한 곳은 다시 방문할 필요없다.
만날 수 있냐 없냐만 확인하면 가능하기 때문에 백조의 위치를 변경해주면 된다.
그렇다면? 얼음이 녹는 부분에서 탐색하면 시간을 줄일 수 있다. 어처피 녹는 곳이 만날 수 있는 길이 될테니 (line : 33의 이유가 된다.)
테스트 케이스
.i01 : 1번 입력 케이스 / .o01 : 1번 출력 결과
freopen("labudovi.i05", "r", stdin);
파일 입출력으로 입력받으세요.
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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | #include <cstdio> #include <queue> using namespace std; int R,C, cnt=0; char map[1502][1502]; bool visited[1502][1502], thaw_visited[1502][1502];// 전자 : 백조꺼, 후자 : 얼음꺼 queue<pair<int, int>> q, thaw; // q : 백조 위치, thaw : 얼음의 테두리 pair<int, int> S,E; int pr[4]={1,-1,0,0}; int pc[4]={0,0,1,-1}; bool flag = 0; //0 : 맨 처음 테두리 찾기, 1 : 이후에 녹는 테두리는 물(.)이 됨 void MeltIce(int r, int c){ thaw_visited[r][c]=1; if(map[r][c]=='X'){ thaw.push({r, c}); if(flag) map[r][c]='.'; } else { for(int i=0;i<4;i++){ int nr = r+pr[i], nc = c+pc[i]; if(nr < 0 || nc < 0 || nr >= R || nc >= C) continue; if(thaw_visited[nr][nc]) continue; MeltIce(nr, nc); } } return; } //만남가능여부 bool canMeetFuckingSwan(){ queue<pair<int, int>> swan_temp; swap(swan_temp, q); //swan_temp에는 다음 좌표가 push되고 q에는 얼음의 테두리가 push된다.(이유는 위에 설명) while(!swan_temp.empty()){ int r = swan_temp.front().first, c = swan_temp.front().second; swan_temp.pop(); if(r==E.first && c==E.second){ return true; } for(int i=0;i<4;i++){ int nr = r+pr[i], nc = c+pc[i]; if(nr < 0 || nc < 0 || nr >= R || nc >= C) continue; if(visited[nr][nc]) continue; if(map[nr][nc]=='X') q.push({nr, nc}); else swan_temp.push({nr ,nc}); visited[nr][nc]=1; } } return false; } int main(){ scanf("%d%d",&R,&C); bool first=0; for(int i=0;i<R;i++){ for(int j=0;j<C;j++){ char c; scanf(" %c",&c); map[i][j]=c; if(c=='L'){ if(!first){ first= 1; S.first=i, S.second=j; } else E.first=i, E.second=j; } } } // 테두리 얼음 찾기 for(int i=0;i<R;i++) for(int j=0;j<C;j++) if(!thaw_visited[i][j] && map[i][j]!='X') MeltIce(i,j); flag = 1; q.push(make_pair(S.first, S.second)); visited[S.first][S.second]=1; while(!canMeetFuckingSwan()){ cnt++; //해동 queue<pair<int, int>> temp; swap(temp, thaw); while(!temp.empty()){ int r=temp.front().first, c=temp.front().second; temp.pop(); MeltIce(r, c); } } printf("%d\n",cnt); return 0; } | cs |
'알고리즘 > 백준 알고리즘' 카테고리의 다른 글
BOJ : 1526 가장 큰 금민수 (0) | 2017.04.28 |
---|---|
BOJ : 1953 팀 배분 (2) | 2017.04.28 |
BOJ : 5567 결혼식 (0) | 2017.04.28 |
BOJ : 13458 시험감독 (0) | 2017.04.28 |
BOJ : 12100 2048(Easy) (0) | 2017.04.28 |