結果

問題 No.130 XOR Minimax
ユーザー itezpaceitezpace
提出日時 2016-11-19 07:28:54
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 729 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 63,980 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 20:48:11
合計ジャッジ時間 2,202 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 15 ms
5,376 KB
testcase_05 AC 39 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <bitset>
#include <algorithm>
using namespace std;
int main(){
  int N;cin>>N;
  vector<int> v1(N);
  int a=0;
  for(int i=0;i<N;++i){
    cin>>v1[i];
    if(a<v1[i]) a=v1[i];
  }
  bitset<33> bs1(a);
  int p=0;
  for(int i=32;i>=0;--i){
    if(bs1.test(i)){
      p=i;
      break;
    }
  }
  bitset<33> bs2=bs1;
  int c=a;
  while(1){
    c=(int)bs2.to_ulong();
    p-=1;
    vector<int> v2=v1;
    int b=0;
    for(int i=0;i<N;++i){
      v2[i]^=c;
      if(b<v2[i]) b=v2[i];
    }
    if(a>=b || p<0){
      break;
    } else {
      bs1.flip(p);
      bs2=bs1;
    }
  }
  int ans=0;
  for(int i=0;i<N;++i){
    v1[i]^=c;
    if(ans<v1[i]) ans=v1[i];
  }
  cout<<ans<<endl;
}
0