結果

問題 No.943 取り調べ
ユーザー TakoKurageTakoKurage
提出日時 2019-12-16 11:09:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 505 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 77,992 KB
最終ジャッジ日時 2024-07-02 19:39:31
合計ジャッジ時間 4,370 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 319 ms
76,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 320 ms
76,672 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 139 ms
76,608 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 67 ms
68,480 KB
testcase_14 WA -
testcase_15 AC 39 ms
52,992 KB
testcase_16 AC 37 ms
52,480 KB
testcase_17 AC 176 ms
76,916 KB
testcase_18 AC 37 ms
52,992 KB
testcase_19 AC 63 ms
67,968 KB
testcase_20 AC 39 ms
52,608 KB
testcase_21 AC 37 ms
52,352 KB
testcase_22 WA -
testcase_23 AC 365 ms
76,764 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 i, x in enumerate(X):
        if state & x == x:
            state |= 1 << i

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

    if state != complete:
        continue

    ans = min(ans, cand)

print(ans)
0