BOJ 15651 N과 M (3)

Jmnote (토론 | 기여)님의 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 }}