結果
| 問題 |
No.184 たのしい排他的論理和(HARD)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-04-02 01:17:11 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 47 ms / 5,000 ms |
| コード長 | 659 bytes |
| コンパイル時間 | 1,263 ms |
| コンパイル使用メモリ | 160,804 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-04 12:09:33 |
| 合計ジャッジ時間 | 3,229 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 34 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int n, ans = 0, c;
unsigned long long tmp;
cin >> n;
vector<unsigned long long> a(n);
for(int i = 0; i < n; i++) {
cin >> a[i];
}
for(int i = 0; i < n; i++) {
if(a[i]) {
ans++;
tmp = a[i] >> 1LL;
c = 0;
while (tmp){
c++;
tmp >>= 1LL;
}
for(int j = i + 1; j < n; j++) {
if ((1LL << c) & a[j]) a[j] ^= a[i];
}
}
}
cout << (1LL << ans) << "\n";
return 0;
}