티스토리 뷰
미로탐색
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int map[30][30], n, m, ch[30][30], cnt=0;
int dx[4]={-1, 0, 1, 0};
int dy[4]={0, 1, 0, -1};
void DFS(int x, int y){
int i, j, xx, yy;
if(x==7 && y==7) {
cnt++;
return;
}
else {
for(i=0; i<4; i++){
xx=x+dx[i];
yy=y+dy[i];
if(xx<1 || yy<1 || xx>7 || yy>7){
continue;
}
if(map[xx][yy]==0 && ch[xx][yy]==0){
ch[xx][yy]=1;
DFS(xx, yy);
ch[xx][yy]=0;
}
}
}
}
int main() {
int a, b, i, j;
freopen("input.txt", "rt", stdin);
for(i=1; i<=7; i++){
for(j=1; j<=7; j++){
scanf("%d", &a);
map[i][j] = a;
}
}
ch[1][1]=1;
DFS(1, 1);
printf("%d", cnt);
return 0;
}
인접리스트
#include <iostream>
#include <vector>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int n, m, ch[30], cnt=0;
vector<int> map[30];
void DFS(int v){
int i;
if(v==n){
cnt++;
} else {
for(i=0; i<map[v].size(); i++){
if(ch[map[v][i]]==0){
ch[map[v][i]]=1;
DFS(map[v][i]);
ch[map[v][i]]=0;
}
}
}
}
int main() {
int a, b, i;
//freopen("input.txt", "rt", stdin);
scanf("%d %d", &n, &m);
for(i=1; i<=m; i++){
scanf("%d %d", &a, &b);
map[a].push_back(b);
}
ch[1]=1;
DFS(1);
printf("%d", cnt);
return 0;
}
'lecture > algorithm - c++' 카테고리의 다른 글
[c++] 이진트리 넓이우선탐색, 그래프 최단거리 - BFS (0) | 2021.01.13 |
---|---|
[c++] 최소비용(DFS: 인접행렬) (0) | 2021.01.12 |
[c++] 경로탐색(DFS), 인접행렬(가중치 방향그래프) (0) | 2021.01.09 |
[c++] 특정수 만들기(DFS), 병합정렬 (0) | 2021.01.07 |
[c++] DFS를 이용한 부분집합 (0) | 2021.01.06 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 입출력장치
- 스텍
- 자료구조
- BFS
- 병행프로세스
- 최단경로
- C
- C++
- javascript
- 세마포어
- Stack
- 교착상태
- 인접행렬
- 인접리스트
- react
- 이진탐색
- client side rendering
- 재귀함수
- 퀵정렬
- 클래스
- server side rendering
- 소프트웨어
- stackframe
- 동적프로그래밍
- 구조체
- 알고리즘
- 배열
- Java
- 운영체제
- 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 |
글 보관함