結果

問題 No.130 XOR Minimax
ユーザー 6soukiti296soukiti29
提出日時 2017-09-06 18:17:05
言語 Nim
(2.0.2)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 575 bytes
コンパイル時間 3,252 ms
コンパイル使用メモリ 65,932 KB
実行使用メモリ 39,524 KB
最終ジャッジ日時 2024-09-12 22:49:00
合計ジャッジ時間 5,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
7,424 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 49 ms
37,732 KB
testcase_05 AC 58 ms
39,524 KB
testcase_06 AC 66 ms
21,264 KB
testcase_07 AC 77 ms
23,860 KB
testcase_08 AC 58 ms
12,032 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 20 ms
8,320 KB
testcase_11 AC 60 ms
21,564 KB
testcase_12 AC 7 ms
6,944 KB
testcase_13 AC 49 ms
15,872 KB
testcase_14 AC 52 ms
11,136 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 37 ms
8,576 KB
testcase_17 AC 38 ms
8,576 KB
testcase_18 AC 42 ms
9,728 KB
testcase_19 AC 49 ms
10,624 KB
testcase_20 AC 25 ms
6,944 KB
testcase_21 AC 52 ms
11,136 KB
testcase_22 AC 12 ms
6,944 KB
testcase_23 AC 5 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 == -1:
        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