結果

問題 No.803 Very Limited Xor Subset
ユーザー SumitacchanSumitacchan
提出日時 2019-03-17 22:40:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 3,125 bytes
コンパイル時間 1,260 ms
コンパイル使用メモリ 153,832 KB
実行使用メモリ 5,592 KB
最終ジャッジ日時 2023-09-22 08:37:10
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 4 ms
4,684 KB
testcase_15 AC 4 ms
5,104 KB
testcase_16 AC 4 ms
4,928 KB
testcase_17 AC 4 ms
4,928 KB
testcase_18 AC 4 ms
4,976 KB
testcase_19 AC 4 ms
5,076 KB
testcase_20 AC 5 ms
5,108 KB
testcase_21 AC 4 ms
4,964 KB
testcase_22 AC 5 ms
5,060 KB
testcase_23 AC 5 ms
5,484 KB
testcase_24 AC 6 ms
5,408 KB
testcase_25 AC 6 ms
5,468 KB
testcase_26 AC 6 ms
5,352 KB
testcase_27 AC 6 ms
5,408 KB
testcase_28 AC 6 ms
5,464 KB
testcase_29 AC 5 ms
5,472 KB
testcase_30 AC 5 ms
5,340 KB
testcase_31 AC 5 ms
5,576 KB
testcase_32 AC 6 ms
5,348 KB
testcase_33 AC 5 ms
5,592 KB
testcase_34 AC 2 ms
4,380 KB
testcase_35 AC 4 ms
5,372 KB
testcase_36 AC 3 ms
4,380 KB
testcase_37 AC 3 ms
4,652 KB
testcase_38 AC 2 ms
4,380 KB
testcase_39 AC 2 ms
4,376 KB
testcase_40 AC 5 ms
5,372 KB
testcase_41 AC 5 ms
5,476 KB
testcase_42 AC 5 ms
5,524 KB
testcase_43 AC 4 ms
5,344 KB
testcase_44 AC 1 ms
4,380 KB
testcase_45 AC 1 ms
4,376 KB
testcase_46 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin);i<(end);i++)
#define REP(i, n) FOR(i,0,n)
#define IFOR(i, begin, end) for(int i=(end)-1;i>=(begin);i--)
#define IREP(i, n) IFOR(i,0,n)
#define Sort(v) sort(v.begin(), v.end())
#define Reverse(v) reverse(v.begin(), v.end())
#define all(v) v.begin(),v.end()
#define SZ(v) ((int)v.size())
#define Lower_bound(v, x) distance(v.begin(), lower_bound(v.begin(), v.end(), x))
#define Upper_bound(v, x) distance(v.begin(), upper_bound(v.begin(), v.end(), x))
#define Max(a, b) a = max(a, b)
#define Min(a, b) a = min(a, b)
#define bit(n) (1LL<<(n))
#define Ans(f, y, n) if(f) cout << y << endl; else cout << n << endl;
#define debug(x) cout << #x << "=" << x << endl;
#define vdebug(v) cout << #v << "=" << endl; REP(i, v.size()){ cout << v[i] << ","; } cout << endl;
#define mdebug(m) cout << #m << "=" << endl; REP(i, m.size()){ REP(j, m[i].size()){ cout << m[i][j] << ","; } cout << endl;}
#define pb push_back
#define f first
#define s second
#define int long long
#define INF 1000000000000000000

using vec = vector<int>;
using mat = vector<vec>;
using Pii = pair<int, int>;
using PiP = pair<int, Pii>;
using PPi = pair<Pii, int>;
using bools = vector<bool>;
using pairs = vector<Pii>;

template<typename T> void readv(vector<T> &a){ REP(i, a.size()) cin >> a[i]; }
void readv_m1(vector<int> &a){ REP(i, a.size()){cin >> a[i]; a[i]--;} }

//int dx[4] = {1,0,-1,0};
//int dy[4] = {0,1,0,-1};

int mod = 1000000007;
//int mod = 998244353;
#define Add(x, y) x = (x + (y)) % mod
#define Mult(x, y) x = (x * (y)) % mod

int modpow(int x, int n, int m){
    int a = 1;
    IREP(i, 64){
        a = (a * a) % m;
        if(((n >> i) & 1) == 1) a = (a * x) % m;
    }
    return a;
}

int BinaryMat_calcrank(mat A){
    int n = A.size(), m = A[0].size();
    int r = 0, j = 0;
    REP(i, n){
        bool f = false;
        while(!f && j < m){
            FOR(i2, i, n){
                if(A[i2][j]){
                    A[i].swap(A[i2]);
                    r++;
                    f = true;
                    break;
                }
            }
            if(f){
                FOR(i2, i + 1, n) if(A[i2][j]){
                    FOR(j2, j, m) A[i2][j2] ^= A[i][j2];
                }
            }
            j++;
        }
    }
    return r;
}

signed main(){

    int N, M, X; cin >> N >> M >> X;
    vec A(N); readv(A);
    vec t(M), l(M), r(M);
    REP(i, M){
        cin >> t[i] >> l[i] >> r[i];
        l[i]--; r[i]--;
    }
    int b = 30;
    mat U(b + M, vec(N, 0));
    vec v(b + M, 0);
    REP(i, N){
        REP(j, b) if((A[i] >> j) & 1) U[j][i] = 1;
    }
    REP(j, b) if((X >> j) & 1) v[j] = 1;

    REP(i, M){
        FOR(j, l[i], r[i] + 1) U[b + i][j] = 1;
        v[b + i] = t[i];
    }
    int f1 = N - BinaryMat_calcrank(U);
    //mdebug(U);
    //debug(f1);
    REP(i, b + M) U[i].pb(v[i]);
    int f2 = N - BinaryMat_calcrank(U);
    Ans(f1 == f2, modpow(2, f1, mod), 0);

    return 0;
}
0