結果

問題 No.943 取り調べ
ユーザー りあんりあん
提出日時 2019-12-05 22:17:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 1,206 ms
コード長 325 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-06-02 07:04:23
合計ジャッジ時間 2,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 141 ms
75,264 KB
testcase_05 AC 154 ms
77,824 KB
testcase_06 AC 152 ms
77,440 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 133 ms
75,520 KB
testcase_09 AC 67 ms
65,408 KB
testcase_10 AC 68 ms
65,664 KB
testcase_11 AC 57 ms
64,512 KB
testcase_12 AC 36 ms
51,840 KB
testcase_13 AC 44 ms
60,672 KB
testcase_14 AC 45 ms
60,672 KB
testcase_15 AC 35 ms
52,096 KB
testcase_16 AC 35 ms
51,712 KB
testcase_17 AC 67 ms
65,408 KB
testcase_18 AC 36 ms
52,096 KB
testcase_19 AC 47 ms
60,544 KB
testcase_20 AC 37 ms
52,224 KB
testcase_21 AC 34 ms
51,840 KB
testcase_22 AC 63 ms
64,896 KB
testcase_23 AC 139 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
b = [ int(''.join(list(reversed(input().replace(" ", "")))), 2) for i in range(n) ]
a = list(map(int, input().split()))
dp = [1 << 28] * (1 << n)
dp[0] = 0
for i in range(1 << n):
    for j in range(n):
        dp[i | 1 << j] = min(dp[i | 1 << j], dp[i] + (0 if (i & b[j]) == b[j] else a[j]))

print(dp[-1])
0