結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー YS55749378YS55749378
提出日時 2022-03-29 15:59:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 461 ms / 5,000 ms
コード長 855 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 174,116 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 09:17:24
合計ジャッジ時間 11,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 307 ms
5,248 KB
testcase_09 AC 59 ms
5,248 KB
testcase_10 AC 235 ms
5,248 KB
testcase_11 AC 163 ms
5,248 KB
testcase_12 AC 370 ms
5,248 KB
testcase_13 AC 403 ms
5,248 KB
testcase_14 AC 222 ms
5,248 KB
testcase_15 AC 442 ms
5,248 KB
testcase_16 AC 357 ms
5,248 KB
testcase_17 AC 391 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 24 ms
5,248 KB
testcase_21 AC 457 ms
5,248 KB
testcase_22 AC 461 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 262 ms
5,248 KB
testcase_29 AC 373 ms
5,248 KB
testcase_30 AC 315 ms
5,248 KB
testcase_31 AC 274 ms
5,248 KB
testcase_32 AC 343 ms
5,248 KB
testcase_33 AC 438 ms
5,248 KB
testcase_34 AC 439 ms
5,248 KB
testcase_35 AC 455 ms
5,248 KB
testcase_36 AC 454 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <utility>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <bits/stdc++.h>
using namespace std;
#define REP2(i,m,n) for(long i=(long)m;i<(long)n;++i)
#define REP(i,n) REP2(i,0,n)

void yesno(bool flag){
    cout<<(flag?"Yes":"No")<<endl;
}

int main(){
    long n;
    cin >> n;
    long a[n];
    REP(i,n) cin >> a[i];
    sort(a,a+n);
    reverse(a,a+n);

    set<long> ans_list;

    REP(i,n){
        long b=62;
        while(b>=0 && ((1LL<<b & a[i])==0)) b--;
        if(b!=-1){
            REP2(j,i+1,n){
                if(1LL<<b & a[j]) a[j]^=a[i];
            }
            sort(a+i+1,a+n);
            reverse(a+i+1,a+n);
            ans_list.insert(b);
          //cout << b << "th bit" << endl;
        }
    }
    long l=ans_list.size();
    cout << (1LL<<l) << endl;
    return 0;
}
0