记录编号 267633 评测结果 RRRRRRRRRR
题目名称 [HZOI 2016]阳光之春 最终得分 0
用户昵称 GravatarHzoi_ 是否通过 未通过
代码语言 C++ 运行时间 0.008 s
提交时间 2016-06-11 16:29:07 内存使用 0.67 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=50100;
int a[maxn],b[maxn];
bool cmp(int x,int y){
	return a[x]<a[y];
}
int main(){
	freopen("spring2016.in","r",stdin);
	freopen("spring2016.out","w",stdout);
	scanf("%d",&a[0]);
	b[0]=a[0];
	for(int i=1;i<=b[0];i++)b[i]=i;
	for(int i=1;i<=a[0];i++)scanf("%d",&a[i]);
	sort(b+1,b+b[0]+1,cmp);
	for(int i=1;i<=10;i++){//作弊啦
		if(!next_permutation(b+1,b+a[0]+1))break;
		printf("total %d:",i);
		for(int j=1;j<=b[0];j++)printf(" %d",b[j]);
		printf("\n\n");
	}
	fclose(stdin);
	fclose(stdout);
	return 0;
}
/*
5
120 205 529 206 671
*/