BOJ 15651:NとM(3)-C++
NとM(3)
コード#コード#
[トレースバックコード]
#include <iostream>
#include <algorithm>
using namespace std;
int N, M;
int arr[10];
void func(int depth){
if(depth == M){
for(int i=0;i<M;i++)
cout << arr[i] << ' ';
cout << '\n';
}else{
for(int i=0;i<N;i++)
{
arr[depth] = i+1;
func(depth+1);
}
}
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> N >> M;
func(0);
return 0;
}
[トレースバックコード]
#include <iostream>
#include <algorithm>
using namespace std;
int N, M;
int arr[10];
void func(int depth){
if(depth == M){
for(int i=0;i<M;i++)
cout << arr[i] << ' ';
cout << '\n';
}else{
for(int i=0;i<N;i++)
{
arr[depth] = i+1;
func(depth+1);
}
}
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> N >> M;
func(0);
return 0;
}
Reference
この問題について(BOJ 15651:NとM(3)-C++), 我々は、より多くの情報をここで見つけました https://velog.io/@neity16/BOJ-15650-N과M-3-Cテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol