結果

問題 No.2895 Zero XOR Subset
ユーザー vjudge1vjudge1
提出日時 2024-09-28 16:58:36
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 898 bytes
コンパイル時間 1,605 ms
コンパイル使用メモリ 171,472 KB
実行使用メモリ 19,172 KB
最終ジャッジ日時 2024-09-28 16:58:43
合計ジャッジ時間 6,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 WA -
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,820 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,820 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
6,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
6,820 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 1 ms
6,820 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

map<ll,int> mp;

struct node {
	ll x;
	int y;
} a[200001];

bool cmp(node &a,node &b) {
	if(a.x==b.x) return a.y<b.y;
	else {
		return a.x<b.x;
	}
}

void solve() {
	int n;cin>>n;
	for(int i=1;i<=n;++i) {
		cin>>a[i].x;
		a[i].y=i;
	}
	ll x=1;
	for(int i=1;i<=60;++i) {
		x*=2;
		mp[x]=1;
		mp[x-1]=2;
	}
	sort(a+1,a+1+n,cmp);
	bool ok=false;
	if(a[1].x==0) ok=true;
	for(int i=2;i<=n;++i) {
		if(a[i].x==a[i-1].x) {
			cout<<"2 "<<"\n";
			cout<<a[i-1].y<<" "<<a[i].y;
			return;
		}
		else if(mp[a[i].x]==1&&a[i].x-1==a[i-1].x) {
			cout<<"2 "<<"\n";
			cout<<a[i-1].y<<" "<<a[i].y;
			return;
		}
		else if(ok==true&&mp[a[i].x]==2) {
			cout<<"2 "<<"\n";
			cout<<a[1].y<<" "<<a[i].y;
			return;
		}
	}
	cout<<"-1";
}
//.
int main() {
	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	int _;_=1;
	while(_--) solve();
	return 0;
}
0