比赛 “Asm.Def战记之拉格朗日点”杯 评测结果 AAAAAATATT
题目名称 Asm.Def的微小贡献 最终得分 70
用户昵称 mikumikumi 运行时间 15.552 s
代码语言 C++ 内存使用 0.33 MiB
提交时间 2015-11-04 10:01:38
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
typedef long long LL;
const int SIZEN=1010;
int N;
LL A[SIZEN];
LL ans[SIZEN]={0};
int tot=0;
void read()
{
	scanf("%d",&N);
	for(int i=1;i<=N;i++)
	{
		//scanf("%I64d",&A[i]);
		scanf("%lld",&A[i]);
	}
}
bool dfs(int x,int now)
{
	if(x!=0&&now==0)
	{
		return 1;
	}
	for(int i=x+1;i<=N;i++)
	{
		tot++;
		ans[tot]=i;
		if(dfs(i,now^A[i])) return 1;
		tot--;
	}
	return 0;
}
void work()
{
	dfs(0,tot);
	printf("%d\n",tot);
	for(int i=1;i<=tot;i++) printf("%lld ",ans[i]);
}
int main()
{
	freopen("asm_contribute.in","r",stdin);
	freopen("asm_contribute.out","w",stdout);
	read();
	work();
	return 0;
}