結果
問題 | No.1142 XOR と XOR |
ユーザー | Haa |
提出日時 | 2020-07-31 22:45:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 893 bytes |
コンパイル時間 | 1,654 ms |
コンパイル使用メモリ | 171,644 KB |
実行使用メモリ | 9,600 KB |
最終ジャッジ日時 | 2024-07-06 20:05:42 |
合計ジャッジ時間 | 4,080 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll, ll> P; typedef vector<ll> VI; typedef vector<VI> VVI; const ll MOD = 1000000007; const ll INF = 1e18; #define REP(i, n) for(int i = 0; i < n; i++) #define ALL(v) v.begin(), v.end() int main() { int n, m, k; cin >> n >> m >> k; VI a(n), b(m); REP(i,n) cin >> a[i]; REP(i,m) cin >> b[i]; VI sa(n+1,0), sb(m+1,0); REP(i,n) sa[i+1]=sa[i]^a[i]; REP(i,m) sb[i+1]=sb[i]^b[i]; VI pa(1024,0), pb(1024,0); REP(i,n+1) pa[sa[i]]++; REP(i,m+1) pb[sb[i]]++; VI qa(1024,0), qb(1024,0); for(int i=0;i<1024;i++){ for(int j=i;j<1024;j++){ int x=i^j; if(x==0){ qa[x]+=pa[i]*(pa[i]-1)/2; qb[x]+=pb[i]*(pb[i]-1)/2; } else{ qa[x]+=pa[i]*pa[j]; qb[x]+=pb[i]*pb[j]; } } } ll ans=0; for(int i=0;i<1024;i++){ int x=k^i; ans+=qa[i]*qb[x]; } cout << ans << endl; return 0; }