Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
58777 | wangwei | 组合的输出 | C++ | 通过 | 13 MS | 264 KB | 579 | 2024-12-16 13:48:21 |
#include <bits/stdc++.h> using namespace std; int main( ) { int n,r,a[100]; cin>>n>>r; for(int i = pow(2,n) - 1; i >= 0; i --) { int cnt = 0; int t = i; for(int j = n; j >= 1; j --) { if(t % 2) { a[cnt] = j; cnt ++; } t /= 2; } if(cnt == r) { for(int j = cnt - 1; j >= 0; j --) cout<<setw(3)<<a[j]; cout<<endl; } } return 0; }