結果
問題 | No.943 取り調べ |
ユーザー | nebukuro09 |
提出日時 | 2019-12-05 22:39:47 |
言語 | D (dmd 2.106.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,104 bytes |
コンパイル時間 | 804 ms |
コンパイル使用メモリ | 123,176 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 03:23:09 |
合計ジャッジ時間 | 1,703 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.stdio; void main() { auto N = readln.chomp.to!int; auto X = iota(N).map!(_ => readln.split.map!(to!int)).array; auto A = new int[](N); foreach (i; 0..N) foreach (j; 0..N) if (X[i][j]) A[i] |= 1 << j; auto B = readln.split.map!(to!int).array; int ans = 1 << 29; foreach (i; 0..(1<<N)) { int mask = i; bool ok = false; while (true) { int premask = mask; foreach (j; 0..N) if (!(mask & (1 << j))) { if ((A[j] & mask) == A[j]) { mask |= (1 << j); } } if (mask == (1 << N) - 1) { ok = true; break; } if (mask == premask) { break; } } if (ok) { ans = min(ans, iota(1<<N).filter!(j => (1 << j) & i).map!(j => B[j]).sum); } } ans.writeln; }