結果

問題 No.943 取り調べ
ユーザー りあんりあん
提出日時 2019-12-05 22:17:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 325 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,556 KB
最終ジャッジ日時 2024-12-23 01:37:37
合計ジャッジ時間 17,125 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,568 KB
testcase_01 AC 31 ms
17,444 KB
testcase_02 AC 31 ms
17,572 KB
testcase_03 AC 33 ms
23,296 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 30 ms
17,572 KB
testcase_08 TLE -
testcase_09 AC 1,002 ms
13,184 KB
testcase_10 AC 1,017 ms
13,056 KB
testcase_11 AC 500 ms
11,776 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 34 ms
10,624 KB
testcase_14 AC 40 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 29 ms
10,496 KB
testcase_17 AC 974 ms
11,136 KB
testcase_18 AC 31 ms
10,496 KB
testcase_19 AC 34 ms
10,624 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 1,010 ms
13,184 KB
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

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