結果
問題 | No.1142 XOR と XOR |
ユーザー | mot |
提出日時 | 2020-08-01 02:41:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,271 ms / 2,000 ms |
コード長 | 1,445 bytes |
コンパイル時間 | 788 ms |
コンパイル使用メモリ | 87,196 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 03:40:16 |
合計ジャッジ時間 | 20,226 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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,271 ms
5,248 KB |
testcase_04 | AC | 974 ms
5,248 KB |
testcase_05 | AC | 801 ms
5,248 KB |
testcase_06 | AC | 1,017 ms
5,248 KB |
testcase_07 | AC | 1,230 ms
5,248 KB |
testcase_08 | AC | 1,252 ms
5,248 KB |
testcase_09 | AC | 1,249 ms
5,248 KB |
testcase_10 | AC | 1,247 ms
5,248 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 | 684 ms
5,248 KB |
testcase_15 | AC | 657 ms
5,248 KB |
testcase_16 | AC | 52 ms
5,248 KB |
testcase_17 | AC | 934 ms
5,248 KB |
testcase_18 | AC | 214 ms
5,248 KB |
testcase_19 | AC | 1,017 ms
5,248 KB |
testcase_20 | AC | 630 ms
5,248 KB |
testcase_21 | AC | 419 ms
5,248 KB |
testcase_22 | AC | 223 ms
5,248 KB |
testcase_23 | AC | 946 ms
5,248 KB |
testcase_24 | AC | 1,067 ms
5,248 KB |
testcase_25 | AC | 632 ms
5,248 KB |
testcase_26 | AC | 1,014 ms
5,248 KB |
testcase_27 | AC | 814 ms
5,248 KB |
ソースコード
#include<iostream> #include<iomanip> #include<cmath> #include<string> #include<cstring> #include<vector> #include<list> #include<algorithm> #include<map> #include<set> #include<queue> #include<stack> using namespace std; typedef long long ll; #define fi first #define se second #define mp make_pair #define rep(i, n) for(int i=0;i<n;++i) #define rrep(i, n) for(int i=n;i>=0;--i) const int inf=1e9+7; const ll mod=1e9+7; const ll big=1e18; const double PI=2*asin(1); ll DP1[1024], DP2[1024]; int main() { int N, M, K; cin>>N>>M>>K; int a[N], b[M]; for(int i=0;i<N;++i) cin>>a[i]; for(int i=0;i<M;++i) cin>>b[i]; vector<ll> befarr(1024), aftarr(1024); for(int i=0;i<1024;++i) { befarr[i] = 0; aftarr[i] = 0; } for(int i=0;i<N;++i) { befarr[0]++; for(int j=0;j<(1<<10);++j) { aftarr[j^a[i]] += befarr[j]; } for(int j=0;j<(1<<10);++j) { DP1[j] += aftarr[j]; DP1[j] %= mod; } befarr = aftarr; for(int j=0;j<(1<<10);++j) aftarr[j] = 0; } for(int i=0;i<(1<<10);++i) befarr[i] = 0; for(int i=0;i<M;++i) { befarr[0]++; for(int j=0;j<(1<<10);++j) { aftarr[j^b[i]] += befarr[j]; } for(int j=0;j<(1<<10);++j) { DP2[j] += aftarr[j]; DP2[j] %= mod; } befarr = aftarr; for(int j=0;j<(1<<10);++j) aftarr[j] = 0; } ll ans = 0; for(int i=0;i<(1<<10);++i) { ans += DP1[i]*DP2[K^i]%mod; ans %= mod; } cout<<ans<<endl; }