记录编号 | 526175 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2004]火星人 | 最终得分 | 100 | ||
用户昵称 | 猎户星座 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.012 s | ||
提交时间 | 2018-12-18 19:02:43 | 内存使用 | 0.32 MiB | ||
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int main(){ freopen("martian.in","r",stdin); freopen("martian.out","w",stdout); int n,m,s[10001]={0}; cin>>n>>m; for(int i=1;i<=n;++i){ cin>>s[i]; } for(int i=0;i<m;++i){ next_permutation(s+1,s+n+1); } for(int i=1;i<=n;++i){ cout<<s[i]<<' '; } return 0; }