結果

問題 No.2895 Zero XOR Subset
ユーザー cho435cho435
提出日時 2024-09-20 22:48:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,169 bytes
コンパイル時間 4,637 ms
コンパイル使用メモリ 266,976 KB
実行使用メモリ 17,956 KB
最終ジャッジ日時 2024-09-20 22:48:19
合計ジャッジ時間 8,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)

template<typename T>
bool chmin(T &x, T y) { return x > y ? (x = y, true) : false; }
template<typename T>
bool chmax(T &x, T y) { return x < y ? (x = y, true) : false; }

struct io_setup {
	io_setup() {
		ios::sync_with_stdio(false);
		std::cin.tie(nullptr);
		cout << fixed << setprecision(15);
	}
} io_setup;

int main(){
	int n;
	cin>>n;
	vector<ll> a(n);
	rep(i,0,n) cin>>a.at(i);
	vector<ll> b;
	vector<pair<ll,vector<int>>> ck;
	rep(i,0,n){
		ll x=a.at(i);
		vector<int> v;
		int ct=0;
		for(int y:b){
			if(chmin(x,x^y)) v.push_back(ct);
			ct++;
		}
		if(x==0){
			vector<int> ans;
			ans.push_back(i);
			int m=b.size();
			vector<int> us(m,0);
			for(int d:v) us.at(d)^=1;
			while(!us.empty()){
				if(us.back()){
					auto[dd,tv]=ck.back();
					ans.push_back(dd);
					for(int d:tv) us.at(d)^=1;
				}
				us.pop_back();				
				ck.pop_back();
			}
			m=ans.size();
			cout<<m<<"\n";
			rep(j,0,m) cout<<ans.at(j)+1<<" \n"[j==m-1];
			return 0;
		}
		b.push_back(x);
		ck.push_back({i,v});
	}
	cout<<"-1\n";
}
0