結果

問題 No.943 取り調べ
ユーザー TakoKurageTakoKurage
提出日時 2019-12-16 11:20:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 708 ms / 1,206 ms
コード長 440 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 77,688 KB
最終ジャッジ日時 2024-07-02 19:41:38
合計ジャッジ時間 6,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,540 KB
testcase_01 AC 34 ms
52,716 KB
testcase_02 AC 34 ms
52,200 KB
testcase_03 AC 34 ms
52,192 KB
testcase_04 AC 482 ms
77,180 KB
testcase_05 AC 624 ms
76,176 KB
testcase_06 AC 636 ms
76,220 KB
testcase_07 AC 35 ms
52,196 KB
testcase_08 AC 480 ms
77,468 KB
testcase_09 AC 227 ms
77,688 KB
testcase_10 AC 190 ms
76,892 KB
testcase_11 AC 145 ms
77,124 KB
testcase_12 AC 35 ms
52,132 KB
testcase_13 AC 58 ms
69,128 KB
testcase_14 AC 66 ms
74,060 KB
testcase_15 AC 42 ms
61,560 KB
testcase_16 AC 34 ms
53,448 KB
testcase_17 AC 233 ms
77,448 KB
testcase_18 AC 40 ms
59,916 KB
testcase_19 AC 66 ms
72,352 KB
testcase_20 AC 45 ms
61,396 KB
testcase_21 AC 37 ms
53,100 KB
testcase_22 AC 227 ms
77,052 KB
testcase_23 AC 708 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = [int(input().replace(" ", "")[::-1], 2) for _ in range(N)]
A = [int(i) for i in input().split()]

complete = 2 ** N - 1

ans = float("inf")
for state in range(2 ** N):

    cand = sum(a for i, a in enumerate(A) if state >> i & 1)

    for _ in range(N):
        for i, x in enumerate(X):
            if state & x == x:
                state |= 1 << i

    if state == complete:
        ans = min(ans, cand)

print(ans)
0