結果

問題 No.5001 排他的論理和でランニング
ユーザー iwkjoseciwkjosec
提出日時 2018-04-02 20:03:37
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,880 bytes
コンパイル時間 841 ms
実行使用メモリ 45,304 KB
スコア 51,380,175
最終ジャッジ日時 2020-03-12 20:59:09
ジャッジサーバーID
(参考情報)
judge6 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
44,364 KB
testcase_01 AC 55 ms
30,084 KB
testcase_02 AC 65 ms
30,484 KB
testcase_03 AC 76 ms
33,676 KB
testcase_04 AC 126 ms
45,076 KB
testcase_05 AC 68 ms
31,428 KB
testcase_06 AC 106 ms
32,600 KB
testcase_07 AC 102 ms
33,116 KB
testcase_08 AC 139 ms
44,288 KB
testcase_09 TLE -
testcase_10 AC 67 ms
32,460 KB
testcase_11 AC 91 ms
31,556 KB
testcase_12 AC 95 ms
28,976 KB
testcase_13 AC 109 ms
42,184 KB
testcase_14 AC 96 ms
34,484 KB
testcase_15 AC 92 ms
29,440 KB
testcase_16 AC 57 ms
28,144 KB
testcase_17 AC 77 ms
30,340 KB
testcase_18 AC 79 ms
34,200 KB
testcase_19 AC 114 ms
29,244 KB
testcase_20 AC 81 ms
28,528 KB
testcase_21 AC 60 ms
32,432 KB
testcase_22 AC 54 ms
29,860 KB
testcase_23 AC 48 ms
29,852 KB
testcase_24 AC 67 ms
31,348 KB
testcase_25 AC 93 ms
35,264 KB
testcase_26 AC 87 ms
34,760 KB
testcase_27 AC 72 ms
29,036 KB
testcase_28 AC 90 ms
32,664 KB
testcase_29 AC 102 ms
33,824 KB
testcase_30 AC 62 ms
30,412 KB
testcase_31 AC 95 ms
34,628 KB
testcase_32 AC 64 ms
30,348 KB
testcase_33 AC 112 ms
40,812 KB
testcase_34 AC 116 ms
45,304 KB
testcase_35 AC 100 ms
32,720 KB
testcase_36 AC 104 ms
44,152 KB
testcase_37 AC 113 ms
35,184 KB
testcase_38 AC 78 ms
28,488 KB
testcase_39 AC 69 ms
31,300 KB
testcase_40 AC 106 ms
33,644 KB
testcase_41 AC 103 ms
30,372 KB
testcase_42 AC 74 ms
33,716 KB
testcase_43 AC 74 ms
33,872 KB
testcase_44 AC 104 ms
39,344 KB
testcase_45 AC 107 ms
41,732 KB
testcase_46 AC 91 ms
35,732 KB
testcase_47 AC 70 ms
31,516 KB
testcase_48 AC 72 ms
28,364 KB
testcase_49 AC 119 ms
43,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.5.0-beta1-19606-04 (d2bd58c6)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using static System.Console;

class Program
{
    static void Main()
    {
        var dt = DateTime.Now;
        var NM = ReadLine().Split().Select(int.Parse).ToArray();
        var N = NM[0];
        var M = NM[1];
        var A = ReadLine().Split().Select(int.Parse).ToArray();

        if (N == M)
        {
            WriteLine(string.Join(" ", A));
            return;
        }

        var r = new XorShift();
        var res = 0;
        for (int i = 0; i < M; i++)
        {
            res ^= A[i];
        }
        short c = 0;
        while (res != 0xFFFFF)
        {
            var a = r.Next(M);
            var b = r.Next(N - M) + M;
            var mmt = res ^ A[a] ^ A[b];
            if (mmt > res)
            {
                res = mmt;
                var t = A[a];
                A[a] = A[b];
                A[b] = t;
            }
            if (c == 0 && (DateTime.Now - dt).TotalMilliseconds > 1500) break;
            c++;
        }
        WriteLine(string.Join(" ", A.Take(M)));
    }
}

public class XorShift
{
    uint x = 123456789;
    uint y = 362436069;
    uint z = 521288629;
    uint w = 88675123;

    public XorShift()
    {
        var t = (uint)Environment.TickCount;
        x ^= t;
        y ^= Rotate(t, 17);
        z ^= Rotate(t, 31);
        w ^= Rotate(t, 18);
    }

    uint Rotate(uint u, int n) => (u << n) + (u >> 32 - n);

    public int Next()// [0, int.MaxValue)                  
    {
        var t = x ^ x << 11;
        x = y; y = z; z = w;
        t = w = w ^ w >> 19 ^ t ^ t >> 8;
        if (t > int.MaxValue) t = ~t;
        return (int)(t == int.MaxValue ? --t : t);
    }

    public int Next(int maxValue) => (int)(NextDouble() * maxValue);// [0, maxValue)

    public double NextDouble() => (double)Next() / int.MaxValue;// [0.0, 1.0)
}
0