[ BOJ / C++ ] 6603번 로또
이번 문제는 함수의 재귀 호출을 이용하여 해결하는 문제였다.
- 트리가 만들어진다고 생각을 한다.
- 재귀함수를 통해 완전탐색으로 탐색하여 result배열에 하나씩 채워 넣고 트리의 깊이가 6이 되면 result배열을 출력한다.
Code
#include <iostream>
#define MAX 13
using namespace std;
int n;
int arr[MAX]={0};
int result[MAX];
void Init(){
for(int i=0; i<n; i++){
arr[i]=0;
result[i]=0;
}
}
void Input(){
cin>>n;
for(int i=0; i<n; i++){
cin>>arr[i];
}
}
void DFS(int start, int depth){
if(depth==6){
for(int i=0; i<6; i++){
cout<<result[i]<<" ";
}
cout<<endl;
return ;
}
for(int i=start; i<n; i++){
result[depth]=arr[i];
DFS(i+1, depth+1);
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
while(1){
Init();
Input();
if(n==0)
break;
DFS(0,0);
cout<<endl;
}
return 0;
}
#include <iostream>
#define MAX 13
using namespace std;
int n;
int arr[MAX]={0};
int result[MAX];
void Init(){
for(int i=0; i<n; i++){
arr[i]=0;
result[i]=0;
}
}
void Input(){
cin>>n;
for(int i=0; i<n; i++){
cin>>arr[i];
}
}
void DFS(int start, int depth){
if(depth==6){
for(int i=0; i<6; i++){
cout<<result[i]<<" ";
}
cout<<endl;
return ;
}
for(int i=start; i<n; i++){
result[depth]=arr[i];
DFS(i+1, depth+1);
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
while(1){
Init();
Input();
if(n==0)
break;
DFS(0,0);
cout<<endl;
}
return 0;
}
Author And Source
이 문제에 관하여([ BOJ / C++ ] 6603번 로또), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@xx0hn/BOJ-C-6603번-로또저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)