結果
| 問題 |
No.184 たのしい排他的論理和(HARD)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-12 14:43:03 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 5,000 ms |
| コード長 | 547 bytes |
| コンパイル時間 | 808 ms |
| コンパイル使用メモリ | 71,524 KB |
| 最終ジャッジ日時 | 2025-01-09 17:42:06 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 34 |
ソースコード
#include <iostream>
#include <vector>
using lint = long long;
void solve() {
int n;
std::cin >> n;
std::vector<lint> xs(n);
for (auto& x : xs) std::cin >> x;
int ans = 0;
for (int i = n - 1; i >= 0; --i) {
if (xs[i] == 0) continue;
++ans;
for (int j = 0; j < i; ++j) {
xs[j] = std::min(xs[j], xs[j] ^ xs[i]);
}
}
std::cout << (1LL << ans) << std::endl;
}
int main() {
std::cin.tie(nullptr);
std::ios::sync_with_stdio(false);
solve();
return 0;
}