結果

問題 No.130 XOR Minimax
ユーザー te-shte-sh
提出日時 2017-01-30 22:42:20
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 816 ms / 5,000 ms
コード長 881 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 104,568 KB
実行使用メモリ 19,944 KB
最終ジャッジ日時 2024-06-12 06:44:53
合計ジャッジ時間 7,776 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 113 ms
19,944 KB
testcase_06 AC 123 ms
7,536 KB
testcase_07 AC 172 ms
14,192 KB
testcase_08 AC 816 ms
9,724 KB
testcase_09 AC 37 ms
6,944 KB
testcase_10 AC 50 ms
6,944 KB
testcase_11 AC 129 ms
6,944 KB
testcase_12 AC 20 ms
6,940 KB
testcase_13 AC 104 ms
6,940 KB
testcase_14 AC 666 ms
6,988 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 AC 459 ms
6,940 KB
testcase_17 AC 489 ms
6,944 KB
testcase_18 AC 508 ms
6,940 KB
testcase_19 AC 650 ms
6,940 KB
testcase_20 AC 297 ms
6,944 KB
testcase_21 AC 660 ms
6,944 KB
testcase_22 AC 136 ms
6,940 KB
testcase_23 AC 42 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import core.bitop;    // bit operation

void main()
{
  auto n = readln.chomp.to!size_t;
  auto ai = readln.split.to!(int[]);

  int calc(size_t i, int[] ai) {
    if (ai.empty) return int.max;
    auto bi = ai.filter!(a => a.bitTest(i)).map!(a => a.bitReset(i)).array;
    auto ci = ai.filter!(a => !a.bitTest(i)).array;
    if (i == 0) return bi.empty || ci.empty ? 0 : 1;
    auto b = calc(i - 1, bi);
    if (!ci.empty) b = b.bitSet(i);
    auto c = calc(i - 1, ci);
    if (!bi.empty) c = c.bitSet(i);
    return min(b, c);
  }

  writeln(calc(ai.fold!max.bsr, ai));
}

bool bitTest(T)(T n, size_t i) { return (n & (1.to!T << i)) != 0; }
T bitSet(T)(T n, size_t i) { return n | (1.to!T << i); }
T bitReset(T)(T n, size_t i) { return n & ~(1.to!T << i); }
int bsr(T)(T n) { return core.bitop.bsr(n.to!ulong); }
0