結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
40,484 KB
testcase_01 AC 137 ms
28,212 KB
testcase_02 AC 64 ms
26,336 KB
testcase_03 AC 80 ms
31,932 KB
testcase_04 AC 118 ms
42,996 KB
testcase_05 AC 110 ms
31,160 KB
testcase_06 AC 126 ms
34,496 KB
testcase_07 AC 91 ms
35,124 KB
testcase_08 AC 111 ms
44,196 KB
testcase_09 AC 63 ms
27,384 KB
testcase_10 AC 128 ms
32,636 KB
testcase_11 AC 80 ms
33,540 KB
testcase_12 AC 106 ms
28,864 KB
testcase_13 AC 169 ms
44,084 KB
testcase_14 AC 121 ms
34,432 KB
testcase_15 AC 69 ms
31,456 KB
testcase_16 AC 62 ms
28,248 KB
testcase_17 AC 63 ms
28,644 KB
testcase_18 AC 126 ms
32,412 KB
testcase_19 AC 137 ms
29,276 KB
testcase_20 AC 92 ms
30,492 KB
testcase_21 AC 67 ms
28,544 KB
testcase_22 AC 62 ms
31,924 KB
testcase_23 AC 181 ms
31,836 KB
testcase_24 AC 126 ms
31,580 KB
testcase_25 AC 108 ms
33,412 KB
testcase_26 AC 143 ms
34,900 KB
testcase_27 AC 147 ms
33,292 KB
testcase_28 AC 141 ms
34,768 KB
testcase_29 AC 107 ms
35,712 KB
testcase_30 AC 53 ms
32,072 KB
testcase_31 AC 239 ms
34,516 KB
testcase_32 AC 116 ms
30,560 KB
testcase_33 AC 124 ms
42,912 KB
testcase_34 AC 142 ms
43,308 KB
testcase_35 AC 126 ms
30,616 KB
testcase_36 AC 168 ms
40,076 KB
testcase_37 AC 182 ms
35,276 KB
testcase_38 AC 65 ms
30,556 KB
testcase_39 AC 93 ms
33,296 KB
testcase_40 AC 126 ms
33,600 KB
testcase_41 AC 89 ms
30,164 KB
testcase_42 AC 144 ms
31,588 KB
testcase_43 AC 140 ms
31,896 KB
testcase_44 AC 147 ms
39,220 KB
testcase_45 AC 166 ms
45,732 KB
testcase_46 AC 162 ms
35,772 KB
testcase_47 AC 113 ms
31,448 KB
testcase_48 AC 127 ms
30,392 KB
testcase_49 AC 119 ms
38,964 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 (BitCount(mmt) > BitCount(res))
            {
                res = mmt;
                var t = A[a];
                A[a] = A[b];
                A[b] = t;
            }
            if (c == 0 && (DateTime.Now - dt).TotalMilliseconds > 1450) break;
            c++;
        }
        WriteLine(string.Join(" ", A.Take(M)));
        Error.WriteLine(Convert.ToString(res, 2));
    }

    static int BitCount(int n)
    {
        n = (n & 0x55555555) + (n >> 1 & 0x55555555);
        n = (n & 0x33333333) + (n >> 2 & 0x33333333);
        n = (n & 0x0f0f0f0f) + (n >> 4 & 0x0f0f0f0f);
        n = (n & 0x00ff00ff) + (n >> 8 & 0x00ff00ff);
        return (n & 0x0000ffff) + (n >> 16 & 0x0000ffff);
    }
}

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

    public XorShift()
    {
        var t = 8788180u;
        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