結果
問題 | No.1142 XOR と XOR |
ユーザー | yupiteru_kun |
提出日時 | 2020-07-31 22:51:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,848 ms / 2,000 ms |
コード長 | 1,539 bytes |
コンパイル時間 | 2,946 ms |
コンパイル使用メモリ | 205,684 KB |
実行使用メモリ | 6,784 KB |
最終ジャッジ日時 | 2024-11-08 03:35:48 |
合計ジャッジ時間 | 31,091 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1,848 ms
6,656 KB |
testcase_04 | AC | 1,444 ms
6,016 KB |
testcase_05 | AC | 1,184 ms
5,376 KB |
testcase_06 | AC | 1,492 ms
6,016 KB |
testcase_07 | AC | 1,810 ms
6,784 KB |
testcase_08 | AC | 1,833 ms
6,656 KB |
testcase_09 | AC | 1,829 ms
6,656 KB |
testcase_10 | AC | 1,829 ms
6,528 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 974 ms
5,248 KB |
testcase_15 | AC | 947 ms
5,248 KB |
testcase_16 | AC | 78 ms
5,248 KB |
testcase_17 | AC | 1,360 ms
5,888 KB |
testcase_18 | AC | 303 ms
5,248 KB |
testcase_19 | AC | 1,480 ms
6,016 KB |
testcase_20 | AC | 950 ms
5,248 KB |
testcase_21 | AC | 590 ms
5,248 KB |
testcase_22 | AC | 328 ms
5,248 KB |
testcase_23 | AC | 1,381 ms
5,888 KB |
testcase_24 | AC | 1,565 ms
6,144 KB |
testcase_25 | AC | 899 ms
5,248 KB |
testcase_26 | AC | 1,469 ms
6,016 KB |
testcase_27 | AC | 1,185 ms
5,376 KB |
ソースコード
#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; long long aCnts[1024]; long long bCnts[1024]; long long *aCnt, *bCnt; aCnt = new long long[1024]; bCnt = new long long[1024]; for(int i= 0;i < 1024;++i) { aCnt[i] = 0; bCnt[i] = 0; aCnts[i] = 0; bCnts[i] = 0; } for(int i = 0;i < n;++i) { long long nextACnt[1024]; for(int j = 0;j < 1024;++j) { nextACnt[j] = 0; } for(int j = 0;j < 1024;++j) { nextACnt[j ^ aList[i]] += aCnt[j]; } nextACnt[aList[i]]++; for(int j = 0;j < 1024;++j) { aCnt[j] = nextACnt[j] % mod; } for(int j = 0;j < 1024;++j) { aCnts[j] += aCnt[j]; aCnts[j] %= mod; } } for(int i = 0;i < m;++i) { long long nextBCnt[1024]; for(int j = 0;j < 1024;++j) { nextBCnt[j] = 0; } for(int j = 0;j < 1024;++j) { nextBCnt[j ^ bList[i]] += bCnt[j]; } nextBCnt[bList[i]]++; for(int j = 0;j < 1024;++j) { bCnt[j] = nextBCnt[j] % mod; } for(int j = 0;j < 1024;++j) { bCnts[j] += bCnt[j]; bCnts[j] %= mod; } } 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; }