본문 바로가기

Computer Science

next_permutation으로 5C3 구현하기

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>
#include <vector>
 
using namespace std;
 
int main()
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    int arr[5= {0,0,0,1,1};
    do {
        for (int i = 0; i < 5; i++) {
            if (arr[i] == 0cout << i+1 << ' ';
        }
        cout << '\n';
    } while(next_permutation(arr, arr+5));
 
    return 0;
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter