結果
問題 | No.1142 XOR と XOR |
ユーザー | yupiteru_kun |
提出日時 | 2020-07-31 22:09:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,148 bytes |
コンパイル時間 | 2,827 ms |
コンパイル使用メモリ | 210,328 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-07-06 18:23:20 |
合計ジャッジ時間 | 6,280 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx") #include <bits/stdc++.h> int main() { long long n, m, k; std::cin >> n >> m >> k; long long aList[n]; long long bList[m]; for(int i = 0;i < n;++i) { std::cin >> aList[i]; } for(int i = 0;i < m;++i) { std::cin >> bList[i]; } long long mod = 1000000007; std::map<long, long> aCnts; std::map<long, long> bCnts; long long *aCnt, *bCnt; long long tmp[1024]; aCnt = bCnt = tmp; for(int i = 0;i < n;++i) { long long nextACnt[1024]; for(int j = 0;j < 1024;++j) { nextACnt[j ^ aList[i]] += aCnt[j]; } nextACnt[aList[i]]++; aCnt = nextACnt; for(int j = 0;j < 1024;++j) { aCnts[j] += aCnt[j]; } } for(int i = 0;i < n;++i) { long long nextBCnt[1024]; for(int j = 0;j < 1024;++j) { nextBCnt[j ^ bList[i]] += bCnt[j]; } nextBCnt[bList[i]]++; bCnt = nextBCnt; for(int j = 0;j < 1024;++j) { bCnts[j] += bCnt[j]; } } long long ans = 0; for(int i = 0;i < 1024;++i) { ans += aCnts[i] * bCnts[k ^ i]; ans %= mod; } std::cout << ans << std::endl; return 0; }