結果

問題 No.5001 排他的論理和でランニング
ユーザー iwkjoseciwkjosec
提出日時 2018-04-02 20:08:46
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 184 ms / 1,500 ms
コード長 1,879 bytes
コンパイル時間 821 ms
実行使用メモリ 47,180 KB
スコア 52,428,750
最終ジャッジ日時 2020-03-12 20:59:19
ジャッジサーバーID
(参考情報)
judge8 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
44,604 KB
testcase_01 AC 125 ms
30,272 KB
testcase_02 AC 80 ms
28,168 KB
testcase_03 AC 75 ms
33,924 KB
testcase_04 AC 129 ms
43,088 KB
testcase_05 AC 66 ms
33,232 KB
testcase_06 AC 83 ms
34,456 KB
testcase_07 AC 91 ms
35,248 KB
testcase_08 AC 144 ms
44,196 KB
testcase_09 AC 52 ms
25,508 KB
testcase_10 AC 78 ms
32,544 KB
testcase_11 AC 87 ms
31,716 KB
testcase_12 AC 86 ms
29,084 KB
testcase_13 AC 168 ms
46,380 KB
testcase_14 AC 88 ms
32,536 KB
testcase_15 AC 65 ms
29,476 KB
testcase_16 AC 55 ms
28,240 KB
testcase_17 AC 87 ms
30,652 KB
testcase_18 AC 100 ms
34,256 KB
testcase_19 AC 80 ms
31,160 KB
testcase_20 AC 97 ms
30,340 KB
testcase_21 AC 94 ms
28,408 KB
testcase_22 AC 60 ms
30,180 KB
testcase_23 AC 57 ms
27,812 KB
testcase_24 AC 92 ms
31,504 KB
testcase_25 AC 111 ms
35,384 KB
testcase_26 AC 80 ms
34,792 KB
testcase_27 AC 69 ms
31,188 KB
testcase_28 AC 108 ms
36,764 KB
testcase_29 AC 88 ms
35,668 KB
testcase_30 AC 81 ms
28,220 KB
testcase_31 AC 93 ms
34,472 KB
testcase_32 AC 140 ms
32,544 KB
testcase_33 AC 184 ms
42,776 KB
testcase_34 AC 122 ms
47,180 KB
testcase_35 AC 85 ms
32,512 KB
testcase_36 AC 165 ms
38,012 KB
testcase_37 AC 82 ms
33,080 KB
testcase_38 AC 61 ms
28,400 KB
testcase_39 AC 87 ms
33,196 KB
testcase_40 AC 78 ms
31,748 KB
testcase_41 AC 68 ms
30,272 KB
testcase_42 AC 103 ms
35,616 KB
testcase_43 AC 127 ms
33,724 KB
testcase_44 AC 99 ms
43,252 KB
testcase_45 AC 106 ms
41,572 KB
testcase_46 AC 103 ms
35,516 KB
testcase_47 AC 124 ms
31,604 KB
testcase_48 AC 74 ms
30,456 KB
testcase_49 AC 157 ms
38,792 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];
        }
        byte 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