티스토리 뷰
코드
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int n, m, ch[100], res[100], a[100], cnt=0;;
void DFS(int L){
int i;
if(L==m){
for(i=0; i<m; i++){
printf("%d ", res[i]);
}
cnt++;
puts("");
}else {
for(i=1; i<=n; i++){
if(ch[i]==0) {
res[L]=a[i];
ch[i]=1;
DFS(L+1);
ch[i]=0;
}
}
}
}
int main() {
freopen("input.txt", "rt", stdin);
int k, i, j;
scanf("%d %d", &n, &m);
for(i=1; i<=n; i++){
scanf("%d ", &k);
a[i]=k;
}
DFS(0);
printf("%d", cnt);
return 0;
}
DFS문제로 스텍을 사용해서 구현했다.
'lecture > algorithm - c++' 카테고리의 다른 글
[c++] 복면산 SEND+MORE=MONEY (0) | 2021.01.24 |
---|---|
[c++] 휴가(DFS활용) (0) | 2021.01.24 |
[c++] 원더랜드(Kruskal MST, Prim MST 알고리즘) (0) | 2021.01.17 |
[c++] 이항계수(메모이제이션), 친구인가(Union&Find 자료구조) (0) | 2021.01.16 |
[c++] 최대수입 스케줄 (0) | 2021.01.15 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 병행프로세스
- stackframe
- client side rendering
- 알고리즘
- 스텍
- BFS
- 교착상태
- react
- 배열
- 입출력장치
- 세마포어
- Java
- 자료구조
- 클래스
- server side rendering
- 인접리스트
- 퀵정렬
- dfs
- Stack
- C
- 최단경로
- 동적프로그래밍
- 소프트웨어
- 인접행렬
- 운영체제
- 구조체
- 재귀함수
- C++
- javascript
- 이진탐색
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함