比赛 | 练习 | 评测结果 | AAAAAAAAAA |
---|---|---|---|
题目名称 | 火星人 | 最终得分 | 100 |
用户昵称 | Regnig Etalsnart | 运行时间 | 0.008 s |
代码语言 | C++ | 内存使用 | 0.35 MiB |
提交时间 | 2017-03-24 18:49:37 | ||
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int a[10010],n,m,fuck=0,i; int main() { freopen("martian.in","r",stdin);freopen("martian.out","w",stdout); scanf("%d%d",&n,&m); for(i=1;i<=n;i++) scanf("%d",&a[i]); for(i=1;i<=m;i++) next_permutation(a+1,a+n+1); for(i=1;i<=n;i++) printf("%d ",a[i]); return 0; }