結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー face4face4
提出日時 2019-09-25 17:11:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 480 ms / 5,000 ms
コード長 880 bytes
コンパイル時間 785 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 10,136 KB
最終ジャッジ日時 2023-09-17 17:56:09
合計ジャッジ時間 10,091 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,500 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 342 ms
8,116 KB
testcase_09 AC 71 ms
4,380 KB
testcase_10 AC 256 ms
6,652 KB
testcase_11 AC 183 ms
5,656 KB
testcase_12 AC 394 ms
8,892 KB
testcase_13 AC 427 ms
9,264 KB
testcase_14 AC 242 ms
6,780 KB
testcase_15 AC 464 ms
10,084 KB
testcase_16 AC 383 ms
8,704 KB
testcase_17 AC 412 ms
9,172 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 78 ms
10,056 KB
testcase_21 AC 480 ms
10,056 KB
testcase_22 AC 477 ms
10,136 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 282 ms
7,248 KB
testcase_29 AC 395 ms
9,156 KB
testcase_30 AC 341 ms
8,352 KB
testcase_31 AC 293 ms
7,572 KB
testcase_32 AC 370 ms
8,844 KB
testcase_33 AC 465 ms
9,940 KB
testcase_34 AC 462 ms
9,884 KB
testcase_35 AC 478 ms
10,016 KB
testcase_36 AC 476 ms
10,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 解説を見た
#include<iostream>
#include<vector>
using namespace std;
typedef long long ll;

int main(){
    int n;
    cin >> n;
    vector<vector<bool>> bit(n, vector<bool>(61, 0));
    for(int i = 0; i < n; i++){
        ll x;   cin >> x;
        for(int j = 0; j < 61; j++){
            bit[i][60-j] = x%2==1;
            x >>= 1;
        }
    }
    int rank = 0;
    for(int i = 0; i <= 60; i++){
        int j;
        for(j = rank; j < n; j++){
            if(bit[j][i])   break;
        }
        if(j == n)  continue;
        swap(bit[rank], bit[j]);
        for(j = 0; j < n; j++){
            if(j == rank)   continue;
            if(bit[j][i]){
                for(int k = 0; k <= 60; k++){
                    bit[j][k] = bit[j][k] ^ bit[rank][k];
                }
            }
        }
        rank++;
    }
    cout << (1ll<<rank) << endl;
    return 0;
}
0