結果
| 問題 |
No.5001 排他的論理和でランニング
|
| ユーザー |
iwkjosec
|
| 提出日時 | 2018-04-02 18:28:34 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,730 bytes |
| コンパイル時間 | 884 ms |
| 実行使用メモリ | 39,760 KB |
| スコア | 0 |
| 最終ジャッジ日時 | 2020-03-12 20:59:07 |
|
ジャッジサーバーID (参考情報) |
judge9 / |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 5 TLE * 2 -- * 43 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.5.0-beta1-19606-04 (d2bd58c6) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Collections.Generic;
using System.Linq;
using static System.Console;
class Program
{
static void Main()
{
var NM = ReadLine().Split().Select(int.Parse).ToArray();
var N = NM[0];
var M = NM[1];
var A = ReadLine().Split().Select(int.Parse).ToArray();
var u = new int[M];
var uu = Enumerable.Range(M, N - M).ToList();
var r = new XorShift();
var res = A.Take(M).Aggregate((x, y) => x ^ y);
for (int i = 0; i < M; i++)
{
u[i] = i;
}
while (res != 0xFFFFF)
{
var a = r.Next(M);
var b = r.Next(N - M);
res ^= A[u[a]];
res ^= A[uu[b]];
uu.RemoveAt(b);
uu.Add(u[a]);
u[a] = uu[b];
}
for (int i = 0; i < M; i++)
{
Write($"{A[u[i]]} ");
}
WriteLine();
}
}
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)
}
iwkjosec