結果

問題 No.2895 Zero XOR Subset
ユーザー vjudge1vjudge1
提出日時 2024-09-28 14:41:52
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,577 bytes
コンパイル時間 3,092 ms
コンパイル使用メモリ 176,464 KB
実行使用メモリ 14,252 KB
最終ジャッジ日時 2024-09-28 14:42:05
合計ジャッジ時間 12,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,816 KB
testcase_05 AC 14 ms
6,820 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,816 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
6,816 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
6,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 3 ms
6,816 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>
#define int long long
#define x first
#define y second
#define pi acos(-1)
using namespace std;
using LL = long long;
using ULL = unsigned long long;
typedef pair<int, int> PII;
const int N = 1e6 + 10, M = 5010, mod = 1e9 + 7;
void solve() {
	int n;
	cin >> n;
	vector <int> a(n + 1);
	int p = 0;
	unordered_map <int, int> mp;
	int p2 = 0, p3 = 0;
	for(int i = 1; i <= n; i++){
		cin >> a[i];
		if(a[i] == 0){
			p = i;
		}
		if(mp[a[i]] != 0){
			p2 = mp[a[i]];
			p3 = i;
		}
		mp[a[i]] = i;
	}
	if(p != 0){
		cout << 1 << "\n";
		cout << p << "\n";
		return;
	}
	if(p2 != 0){
		cout << 2 << "\n";
		cout << p2 << " " << p3 << "\n";
		return;
	}
	vector <PII> d(61);
	set <int> s;
	auto add = [&](int x, int y)->void{
		for(int i = 59; i >= 0; i--){
			if((x >> i) & 1){
				if(d[i].x) x ^= d[i].x;
				else{
					d[i].x = x;
					d[i].y = y;
					s.insert(y);
					break;
				} 
			}
		}
		return;	
	};
	for(int i = 1; i <= n; i++){
		add(a[i], i);
	}
	int cnt = 0;
	for(int i = 0; i < 60; i++){
		if(d[i].x != 0) cnt++;
	}
	if(cnt == n || cnt == 1){
		cout << -1 << "\n";
	}else{
		int num = -1;
		for(int i = 1; i <= n; i++){
			if(s.count(i)) continue;
			else{
				num = a[i];
				break;
			}
		}
		vector <int> ans;
		ans.push_back(num);
		for(int i = 59; i >= 0; i--){
			if((num >> i) & 1){
				ans.push_back(a[i]);
			}
		}
		cout << ans.size() << "\n";
		for(auto c: ans){
			cout << c << " ";
		}
		cout << "\n";
	}
	
}
signed main() {
	ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	int T = 1;
	//cin >> T;
	while(T--) {
		solve();
	}
}
0