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
- 중반부
- Smilegate
- LIS #Algorithm #요소추적
- 스마일게이트
- 투포인터
- 소감
- Algorithm
- BaekJoon
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 1편
- 서버개발캠프
- 코딩테스트
- 백준
- c++
- 카카오인턴
- 보석쇼핑
- 코테
- 알고리즘
- Union-find
- 카카오
- BFS
- 삼성 #코테 #2020상반기 #c++
- 식단
- 유니온파인드
Archives
- Today
- Total
짱아의 개발 기록장
백준 16929번. Two Dots(c++) / DFS 본문
반응형
문제 자체는 매우 복잡하고 어려워보이지만, 결국은 처음 시작점으로 돌아올 수 있는 사이클이 있는 지를 판단하는 문제이다.
DFS로 처음 시작점에서 사이클을 그려 시작점으로 돌아올 수 있는 지를 판단해주었다.
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
|
// Two Dots
#include <cstring>
#include <iostream>
using namespace std;
int n, m;
string s;
char game[51][51];
int dx[4] = {-1, 1, 0, 0};
int dy[4] = {0, 0, -1, 1};
int visited[51][51] = {0, };
bool tmp = false;
void check(int x, int y, int startX, int startY, int cnt)
{
if(tmp==true){
return;
}
if(cnt>=4 && x==startX && y==startY){
tmp = true;
return;
}
if(!visited[x][y]){
visited[x][y] = true;
for(int i=0; i<4; i++){
int nx = x+dx[i];
int ny = y+dy[i];
if(0<=nx && nx<n && 0<=ny && ny<m){
if(game[x][y]!=game[nx][ny]) continue;
check(nx, ny, startX, startY, cnt+1);
}
}
}
}
int main()
{
cin>>n>>m;
for(int i=0; i<n; i++){
cin>>s;
for(int j=0; j<s.size(); j++){
game[i][j] = s[j];
}
}
for(int i=0; i<n; i++){
for(int j=0; j<m; j++){
memset(visited, 0, sizeof(visited));
tmp = false;
check(i, j, i, j, 1);
if(tmp==true){
cout<<"Yes"<<"\n";
return 0;
}
}
}
cout<<"No"<<"\n";
return 0;
}
|
cs |
반응형
Comments