"BOJ 15651 N과 M (3)"의 두 판 사이의 차이

(새 문서: ==개요== {{BOJ|단계=22}})
 
 
1번째 줄: 1번째 줄:
==개요==
==개요==
{{BOJ|단계=22}}
{{BOJ|단계=22}}
==C++==
<syntaxhighlight lang='cpp'>
#include <iostream>
using namespace std;
int N, M;
int arr[9] = {0};
void dfs(int cnt) {
    int i;
    if(cnt == M) {
        for(i=0; i<M; i++) {
            cout << arr[i] << ' ';
        }
        cout << '\n';
        return;
    }
    for(i=1; i<=N; i++) {
        arr[cnt] = i;
        dfs(cnt+1);
    }
}
int main() {
    cin >> N >> M;
    dfs(0);
}
</syntaxhighlight>

2023년 9월 14일 (목) 01:29 기준 최신판

1 개요[ | ]

BOJ 15651 N과 M (3)


2 C++[ | ]

#include <iostream>
using namespace std;

int N, M;
int arr[9] = {0};

void dfs(int cnt) {
    int i;
    if(cnt == M) {
        for(i=0; i<M; i++) {
            cout << arr[i] << ' ';
        }
        cout << '\n';
        return;
    }
    for(i=1; i<=N; i++) {
        arr[cnt] = i;
        dfs(cnt+1);
    }
}

int main() {
    cin >> N >> M;
    dfs(0);
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}