結果

問題 No.1142 XOR と XOR
ユーザー ぷらぷら
提出日時 2021-03-08 22:36:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 2,554 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 167,192 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-25 16:46:35
合計ジャッジ時間 3,835 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,812 KB
testcase_01 AC 5 ms
6,816 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 106 ms
6,944 KB
testcase_04 AC 70 ms
6,944 KB
testcase_05 AC 59 ms
6,944 KB
testcase_06 AC 72 ms
6,944 KB
testcase_07 AC 64 ms
6,944 KB
testcase_08 AC 87 ms
6,940 KB
testcase_09 AC 88 ms
6,940 KB
testcase_10 AC 87 ms
6,944 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 49 ms
6,940 KB
testcase_15 AC 48 ms
6,940 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 51 ms
6,944 KB
testcase_18 AC 15 ms
6,944 KB
testcase_19 AC 72 ms
6,940 KB
testcase_20 AC 48 ms
6,940 KB
testcase_21 AC 31 ms
6,940 KB
testcase_22 AC 20 ms
6,940 KB
testcase_23 AC 68 ms
6,944 KB
testcase_24 AC 77 ms
6,940 KB
testcase_25 AC 45 ms
6,940 KB
testcase_26 AC 71 ms
6,940 KB
testcase_27 AC 58 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using pcc = pair<char,char>;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
using pdd = pair<ld,ld>;
using tuplis = array<ll,3>;
template<class T> using prique = priority_queue<T,vector<T>,greater<T>>;
#define rep(i,n) for(ll i = 0; i < n; i++)
#define rrep(i,n) for(ll i = n-1; i >= 0; i--)
#define all(a) a.begin(),a.end()
#define rall(a) a.rbegin(),a.rend()
#define Sort(a) sort(all(a))
#define Rev(a) reverse(all(a))
#define Uniq(a) sort(all(a));a.erase(unique(all(a)),a.end())
const ll LINF = 1001001001001001001;
const int INF = 1001001001;
const int MOD = 1000000007;
const int MODD = 998244353;
const ld PI = 3.1415926535897932;
const ll dx[] = {0, 1, 0, -1, 1, -1, 1, -1};
const ll dy[] = {1, 0, -1, 0, 1, 1, -1, -1};
inline ll popcnt(ll a){ return __builtin_popcountll(a); }
inline ll intpow(ll a, ll b){ ll ans = 1; while(b){ if(b & 1) ans *= a; a *= a; b /= 2; } return ans; }
inline ll modpow(ll a, ll b, ll p){ ll ans = 1; while(b){ if(b & 1) (ans *= a) %= p; (a *= a) %= p; b /= 2; } return ans; }
ll gcd(ll a,ll b){ if(a%b == 0){return b; } else{ return gcd(b,a%b); } }
ll lcm(ll a,ll b){ return a/gcd(a,b)*b; }
template<class T> bool chmin(T& a, const T& b){ if(a > b){ a = b; return 1; } return 0; }
template<class T> bool chmax(T& a, const T& b){ if(a < b){ a = b; return 1; } return 0; }
template<class T, class U> bool chmin(T& a, const U& b){ if(a > T(b)){ a = b; return 1; } return 0; }
template<class T, class U> bool chmax(T& a, const U& b){ if(a < T(b)){ a = b; return 1; } return 0; }
int main() {
    ll N,M,K;
    cin >> N >> M >> K;
    vector<ll>a(N),b(M);
    vector<ll>A(1030),B(1030);
    A[0]++;
    B[0]++;
    ll ax = 0,bx = 0;
    rep(i,N) {
        cin >> a[i];
        ax ^= a[i];
        A[ax]++;
    }
    rep(i,M) {
        cin >> b[i];
        bx ^= b[i];
        B[bx]++;
    }
    vector<ll>A2(1030),B2(1030);
    rep(i,1 << 10) {
        for(ll j = i; j < (1 << 10); j++) {
            if(i == j) {
                A2[0] += (ll)(A[i]*(A[i]-1)/2)%MOD;
                A2[0] %= MOD;
                B2[0] += (ll)(B[i]*(B[i]-1)/2)%MOD;
                B2[0] %= MOD;
            }
            else {
                A2[i^j] += (ll)(A[i]*A[j])%MOD;
                A2[i^j] %= MOD;
                B2[i^j] += (ll)(B[i]*B[j])%MOD;
                B2[i^j] %= MOD;
            }
        }
    }
    ll ans = 0;
    rep(i,1 << 10) {
        ans += A2[i]*B2[i^K]%MOD;
        ans %= MOD;
    }
    cout << ans << endl;
}
0