結果

問題 No.130 XOR Minimax
ユーザー ttkkggwwttkkggww
提出日時 2022-05-10 17:31:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,218 ms / 5,000 ms
コード長 955 bytes
コンパイル時間 4,031 ms
コンパイル使用メモリ 271,476 KB
実行使用メモリ 17,608 KB
最終ジャッジ日時 2024-07-17 23:59:52
合計ジャッジ時間 12,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 408 ms
9,380 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 13 ms
6,944 KB
testcase_06 AC 155 ms
14,176 KB
testcase_07 AC 159 ms
14,172 KB
testcase_08 AC 1,218 ms
17,608 KB
testcase_09 AC 31 ms
6,940 KB
testcase_10 AC 44 ms
6,940 KB
testcase_11 AC 107 ms
10,444 KB
testcase_12 AC 17 ms
6,944 KB
testcase_13 AC 93 ms
9,408 KB
testcase_14 AC 932 ms
15,296 KB
testcase_15 AC 7 ms
6,944 KB
testcase_16 AC 590 ms
11,528 KB
testcase_17 AC 616 ms
11,860 KB
testcase_18 AC 675 ms
12,348 KB
testcase_19 AC 820 ms
14,692 KB
testcase_20 AC 357 ms
8,756 KB
testcase_21 AC 886 ms
15,312 KB
testcase_22 AC 141 ms
6,944 KB
testcase_23 AC 39 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
ll n;
vector<ll> a;

void solve(){
	using P = pair<ll,ll>;
	map<ll,ll> mpa;
	for(auto &i:a)mpa[i] = 0;;
	ll rbit = (1ll<<40)-1,lbit = 0;

	for(int i = 0;i<40;i++){
		
		//for(auto &[l,r]:mpa)cout<<l<<' '<<r<<endl;
		{
			rbit -= (1ll<<i);
			vector<ll> b;
			for(auto &[l,r]:mpa)b.push_back(l&rbit);
			map<ll,ll> mpb;
			for(auto &j:b){
				ll k = j+(1ll<<i);
				//cout<<"jk:"<<j<<' '<<k<<endl;
				if(mpa.count(j)+mpa.count(k)==2){
					mpb[j] = min(mpa[k],mpa[j])+(1ll<<i);
				}else if(mpa.count(j)){
					mpb[j] = mpa[j];
				}else{
					mpb[j] = mpa[k];
				}
			}
			swap(mpa,mpb);
		}
		//cout<<endl;
	}
	//for(auto &[l,r]:mpa)cout<<l<<' '<<r<<endl;cout<<endl;
	for(auto &[l,r]:mpa)cout<<r<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> n;
	a = vector<ll>(n);
	for(auto &i:a)cin >> i;
	solve();
}
0