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