結果

問題 No.943 取り調べ
ユーザー wgrapewgrape
提出日時 2023-12-11 10:36:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 699 ms / 1,206 ms
コード長 625 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 77,944 KB
最終ジャッジ日時 2024-09-27 04:24:26
合計ジャッジ時間 5,319 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 699 ms
77,932 KB
testcase_05 AC 342 ms
77,696 KB
testcase_06 AC 341 ms
77,824 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 685 ms
77,944 KB
testcase_09 AC 224 ms
76,288 KB
testcase_10 AC 208 ms
76,416 KB
testcase_11 AC 104 ms
76,160 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 55 ms
65,024 KB
testcase_14 AC 54 ms
63,616 KB
testcase_15 AC 44 ms
59,520 KB
testcase_16 AC 37 ms
52,224 KB
testcase_17 AC 238 ms
76,200 KB
testcase_18 AC 41 ms
58,496 KB
testcase_19 AC 53 ms
63,744 KB
testcase_20 AC 45 ms
59,776 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 252 ms
76,032 KB
testcase_23 AC 353 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = [list(map(int,input().split())) for i in range(N)]
A = list(map(int,input().split()))
INF = 1 << 60
dp = [INF] * (1 << N)
dp[0] = 0

for status in range(1 << N):
    for target in range(N):
        if (status >> target) & 1:
            continue
        cost = 0
        for i in range(N):
            if (X[target][i] == 1) and (status >> i) & 1 == 0: # 頼りにしている人が自白していない
                cost = A[target] # うそをつく必要がある
        next_status = status | (1 << target)
        dp[next_status] = min(dp[next_status], dp[status] + cost)
        
print(dp[-1])
0