結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー parukiparuki
提出日時 2016-08-31 15:41:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 276 ms / 5,000 ms
コード長 1,426 bytes
コンパイル時間 1,570 ms
コンパイル使用メモリ 174,324 KB
実行使用メモリ 58,000 KB
最終ジャッジ日時 2024-07-04 12:13:33
合計ジャッジ時間 7,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 173 ms
42,112 KB
testcase_09 AC 34 ms
11,264 KB
testcase_10 AC 133 ms
32,896 KB
testcase_11 AC 95 ms
24,448 KB
testcase_12 AC 206 ms
48,384 KB
testcase_13 AC 230 ms
52,096 KB
testcase_14 AC 129 ms
31,232 KB
testcase_15 AC 253 ms
56,192 KB
testcase_16 AC 206 ms
47,360 KB
testcase_17 AC 224 ms
50,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 124 ms
57,984 KB
testcase_21 AC 265 ms
57,996 KB
testcase_22 AC 276 ms
58,000 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 153 ms
36,224 KB
testcase_29 AC 217 ms
49,920 KB
testcase_30 AC 190 ms
44,544 KB
testcase_31 AC 160 ms
38,912 KB
testcase_32 AC 201 ms
47,744 KB
testcase_33 AC 255 ms
56,448 KB
testcase_34 AC 255 ms
55,808 KB
testcase_35 AC 264 ms
57,600 KB
testcase_36 AC 261 ms
57,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

int rankMat(vector<vector<int> > A){
    int n = (int)A.size(), m = (int)A[0].size();

    for(int i = 0; i < min(n, m); ++i){
        for(int j = i; j < n; ++j){
            if(A[j][i]){
                swap(A[i], A[j]);
                break;
            }
        }
        if(A[i][i] == 0){
            continue;
        }
        for(int j = 0; j < n; ++j){
            if(i!=j && A[j][i]){
                for(int k = i; k < m; ++k){
                    A[j][k] ^= A[i][k];
                }
            }
        }
    }

    int r = n;
    for(int i = 0; i < n; ++i)
        if(accumulate(all(A[i]), 0) == 0)--r;
    return r;
}

int main(){
    const int M = 61;
    int N;
    cin >> N;
    vector<vi> A(N, vi(M));
    rep(i, N){
        ll a; scanf("%lld", &a);
        rep(j, M)if(a >> j & 1)A[i][j] = 1;
    }
    int r = rankMat(A);
    assert(r <= M);
    ll ans = 1ll << r;
    cout << ans << endl;
}
0