結果
| 問題 |
No.2895 Zero XOR Subset
|
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2024-09-28 17:19:34 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,381 bytes |
| コンパイル時間 | 1,542 ms |
| コンパイル使用メモリ | 171,996 KB |
| 実行使用メモリ | 14,304 KB |
| 最終ジャッジ日時 | 2024-09-28 17:19:41 |
| 合計ジャッジ時間 | 6,514 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 14 WA * 21 |
ソースコード
#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);
auto add = [&](int x, int y)->void{
for(int i = 60; i >= 0; i--){
if((x >> i) & 1){
if(d[i].x) x ^= d[i].x;
else{
d[i].x = x;
d[i].y = y;
break;
}
}
}
return;
};
for(int i = 1; i <= n; i++){
int num = a[i];
vector <int> ans;
ans.push_back(i);
for(int j = 60; j >= 0; j--){
if((num ^ d[j].x) < num){
num = num ^ d[j].x;
ans.push_back(d[j].y);
}
}
if(num == 0){
cout << ans.size() << "\n";
for(auto c: ans){
cout << c << " ";
}
return;
}
add(a[i], i);
}
cout << -1 << "\n";
}
signed main() {
ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
int T = 1;
//cin >> T;
while(T--) {
solve();
}
}
vjudge1