結果

問題 No.1142 XOR と XOR
ユーザー HaaHaa
提出日時 2020-07-31 22:46:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 935 bytes
コンパイル時間 1,719 ms
コンパイル使用メモリ 167,060 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-04-25 16:26:31
合計ジャッジ時間 4,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,816 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 105 ms
9,472 KB
testcase_04 AC 72 ms
8,192 KB
testcase_05 AC 60 ms
7,296 KB
testcase_06 AC 74 ms
8,320 KB
testcase_07 AC 66 ms
9,472 KB
testcase_08 AC 87 ms
9,728 KB
testcase_09 AC 86 ms
9,472 KB
testcase_10 AC 86 ms
9,472 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 48 ms
6,944 KB
testcase_15 AC 48 ms
6,940 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 50 ms
7,936 KB
testcase_18 AC 15 ms
6,944 KB
testcase_19 AC 73 ms
8,448 KB
testcase_20 AC 48 ms
6,940 KB
testcase_21 AC 32 ms
6,940 KB
testcase_22 AC 19 ms
6,940 KB
testcase_23 AC 69 ms
8,064 KB
testcase_24 AC 77 ms
8,576 KB
testcase_25 AC 47 ms
6,940 KB
testcase_26 AC 73 ms
8,320 KB
testcase_27 AC 59 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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];
			}
			qa[x]%=MOD;
			qb[x]%=MOD;
		}
	}
	ll ans=0;
	for(int i=0;i<1024;i++){
		int x=k^i;
		ans+=qa[i]*qb[x];
		ans%=MOD;
	}
	cout << ans << endl;
	return 0;
}
0