結果

問題 No.130 XOR Minimax
ユーザー 6soukiti296soukiti29
提出日時 2017-09-06 18:16:09
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 574 bytes
コンパイル時間 2,908 ms
コンパイル使用メモリ 65,792 KB
実行使用メモリ 38,212 KB
最終ジャッジ日時 2024-06-30 03:09:12
合計ジャッジ時間 4,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
7,424 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 42 ms
36,100 KB
testcase_05 AC 48 ms
38,212 KB
testcase_06 WA -
testcase_07 AC 58 ms
23,836 KB
testcase_08 AC 49 ms
12,160 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 16 ms
8,320 KB
testcase_11 WA -
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 39 ms
15,872 KB
testcase_14 AC 44 ms
11,136 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 31 ms
8,448 KB
testcase_17 AC 32 ms
8,448 KB
testcase_18 AC 35 ms
9,600 KB
testcase_19 AC 43 ms
10,496 KB
testcase_20 AC 21 ms
6,944 KB
testcase_21 AC 45 ms
11,136 KB
testcase_22 AC 10 ms
6,940 KB
testcase_23 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'algorithm' [UnusedImport]
/home/judge/data/code/Main.nim(1, 36) Warning: imported and not used: 'math' [UnusedImport]

ソースコード

diff #

import sequtils,strutils,algorithm,math
var
    N = stdin.readline.parseInt
    A2 = stdin.readline.split.map(parseInt)
    flag : array[100001, bool]

proc solve(d : int, A : openarray[int]) : int =
    if A.len <= 1 or d == 0:
        return 0
    var
        B = newSeqWith(2, newSeq[int](0))
    for a in A:
        B[((a shr d) and 1)].add(a - (1 shl d))
    if B[0].len == 0:
        return solve(d - 1, B[1])
    elif B[1].len == 0:
        return solve(d - 1, B[0])
    else:
        return (1 shl d) + min(solve(d - 1, B[0]), solve(d - 1, B[1]))

echo solve(29, A2)
0