結果

問題 No.5001 排他的論理和でランニング
ユーザー maimai
提出日時 2018-05-24 23:19:27
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 1,611 ms
実行使用メモリ 7,028 KB
スコア 1,079,600
最終ジャッジ日時 2021-09-25 19:03:35
合計ジャッジ時間 5,395 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
4,972 KB
testcase_25 AC 3 ms
4,976 KB
testcase_26 AC 3 ms
7,024 KB
testcase_27 AC 2 ms
4,976 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mt19937_64 randdev(8901016);
inline int rand(int l, int h) { return uniform_int_distribution<int>(l, h)(randdev); }


int N,M,A[100010];
int ss[100010],x;
int ans[100010],best;

{
    rd(N,M,A(N));
    REP(i,M) x ^= A[i], ss[i] = i;
    
    REP(_,10){
        int j = rand(0,M-1);
        int k = rand(0,N-1);
        x ^= A[ss[j]];
        x ^= A[k];
        ss[j] = k;
        if (x > best){
            best = x;
            if (_ > N/10){
                copy(ss,ss+M,ans);
            }
        }
    }
    REP(i,M)
        wtSp(A[ss[i]]);
}
0