結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー okadukiokaduki
提出日時 2015-04-17 03:55:18
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 653 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 70,956 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 11:20:27
合計ジャッジ時間 2,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 37 ms
6,940 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 27 ms
6,940 KB
testcase_11 AC 20 ms
6,944 KB
testcase_12 AC 42 ms
6,944 KB
testcase_13 AC 46 ms
6,940 KB
testcase_14 AC 27 ms
6,944 KB
testcase_15 AC 50 ms
6,940 KB
testcase_16 AC 42 ms
6,944 KB
testcase_17 AC 45 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 12 ms
6,944 KB
testcase_21 AC 51 ms
6,940 KB
testcase_22 AC 51 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 31 ms
6,944 KB
testcase_29 AC 44 ms
6,944 KB
testcase_30 AC 37 ms
6,940 KB
testcase_31 AC 32 ms
6,940 KB
testcase_32 AC 41 ms
6,940 KB
testcase_33 AC 50 ms
6,940 KB
testcase_34 AC 49 ms
6,944 KB
testcase_35 AC 51 ms
6,944 KB
testcase_36 AC 51 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iomanip>
#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
typedef long long LL;

string b(LL x){
  string s;
  for(int i=20;i>=0;--i)
	if(x>>i&1) s += "1";
	else s += "0";
  return s;
}

int main(){
  cin.sync_with_stdio(false);
  cin.tie(0);
  
  int N; cin >> N;
  vector<LL> vi(N);
  for(int i=0;i<N;++i)cin>>vi[i];

  LL cnt = 0;
  vector<bool> used(N, false);
  for(int d=60;d>=0;--d){
	int k = -1;
	for(int i=0;i<N;++i){
	  if((vi[i]>>d) & 1LL){
		if(k < 0 && !used[i]){
		  k = i; ++cnt; used[i] = true;
		}
		else{
		  vi[i] ^= vi[k];
		}
	  }
	}
  }
  
  cout << (1LL << cnt) << endl;
  
  return 0;
}
0