結果
問題 | No.1142 XOR と XOR |
ユーザー | jupiro |
提出日時 | 2020-07-31 23:13:30 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 519 ms / 2,000 ms |
コード長 | 2,889 bytes |
コンパイル時間 | 1,277 ms |
コンパイル使用メモリ | 130,892 KB |
実行使用メモリ | 6,656 KB |
最終ジャッジ日時 | 2024-11-08 03:36:10 |
合計ジャッジ時間 | 10,075 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | 519 ms
6,528 KB |
testcase_04 | AC | 408 ms
5,888 KB |
testcase_05 | AC | 335 ms
5,376 KB |
testcase_06 | AC | 423 ms
5,888 KB |
testcase_07 | AC | 514 ms
6,528 KB |
testcase_08 | AC | 517 ms
6,656 KB |
testcase_09 | AC | 519 ms
6,528 KB |
testcase_10 | AC | 519 ms
6,400 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 | 277 ms
5,248 KB |
testcase_15 | AC | 269 ms
5,248 KB |
testcase_16 | AC | 24 ms
5,248 KB |
testcase_17 | AC | 385 ms
5,760 KB |
testcase_18 | AC | 87 ms
5,248 KB |
testcase_19 | AC | 421 ms
5,760 KB |
testcase_20 | AC | 270 ms
5,248 KB |
testcase_21 | AC | 168 ms
5,248 KB |
testcase_22 | AC | 94 ms
5,248 KB |
testcase_23 | AC | 389 ms
5,760 KB |
testcase_24 | AC | 442 ms
6,016 KB |
testcase_25 | AC | 255 ms
5,248 KB |
testcase_26 | AC | 415 ms
5,888 KB |
testcase_27 | AC | 332 ms
5,376 KB |
ソースコード
#include <cstdio>#include <iostream>#include <string>#include <sstream>#include <stack>#include <algorithm>#include <cmath>#include <queue>#include <map>#include <set>#include <cstdlib>#include <bitset>#include <tuple>#include <assert.h>#include <deque>#include <bitset>#include <iomanip>#include <limits>#include <chrono>#include <random>#include <array>#include <unordered_map>#include <functional>#include <complex>#include <numeric>template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }//constexpr long long MAX = 5100000;constexpr long long INF = 1LL << 60;constexpr int inf = 1000000007;constexpr long long mod = 1000000007LL;//constexpr long long mod = 998244353LL;const long double PI = acos((long double)(-1));using namespace std;typedef unsigned long long ull;typedef long long ll;typedef long double ld;struct mint {long long x;mint(long long x = 0) :x((x% mod + mod) % mod) {}mint& operator+=(const mint a) {if ((x += a.x) >= mod) x -= mod;return *this;}mint& operator-=(const mint a) {if ((x += mod - a.x) >= mod) x -= mod;return *this;}mint& operator*=(const mint a) {(x *= a.x) %= mod;return *this;}mint operator+(const mint a) const {mint res(*this);return res += a;}mint operator-(const mint a) const {mint res(*this);return res -= a;}mint operator*(const mint a) const {mint res(*this);return res *= a;}mint pow(ll t) const {if (!t) return 1;mint a = pow(t >> 1);a *= a;if (t & 1) a *= *this;return a;}// for prime modmint inv() const {return pow(mod - 2);}mint& operator/=(const mint a) {return (*this) *= a.inv();}mint operator/(const mint a) const {mint res(*this);return res /= a;}};ll acnt[1025], bcnt[1025];int main(){/*cin.tie(nullptr);ios::sync_with_stdio(false);*/ll n, m, k; scanf("%lld %lld %lld", &n, &m, &k);vector<ll> a(n); for (int i = 0; i < n; i++) scanf("%lld", &a[i]);vector<ll> b(m); for (int j = 0; j < m; j++) scanf("%lld", &b[j]);{ll cur[1024] = {};cur[0] = 1;int t = 0;for (int i = 0; i < n; i++) {t ^= a[i];for (int j = 0; j < 1024; j++) {ll p = t ^ j;acnt[p] += cur[j];if (acnt[p] >= mod) acnt[p] -= mod;}cur[t] += 1;}}{ll cur[1024] = {};cur[0] = 1;int t = 0;for (int i = 0; i < m; i++) {t ^= b[i];for (int j = 0; j < 1024; j++) {ll p = t ^ j;bcnt[p] += cur[j];if (bcnt[p] >= mod) bcnt[p] -= mod;}cur[t] += 1;}}ll res = 0;for (int i = 0; i < 1024; i++) {ll t = i ^ k;//cout << acnt[i] << endl;res += acnt[i] % mod * (bcnt[t] % mod) % mod;if (res >= mod) res -= mod;}cout << res << "\n";return 0;}