結果

問題 No.943 取り調べ
ユーザー tobusakanatobusakana
提出日時 2022-10-23 15:49:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 615 ms / 1,206 ms
コード長 998 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 78,144 KB
最終ジャッジ日時 2024-07-02 07:43:21
合計ジャッジ時間 4,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,596 KB
testcase_01 AC 33 ms
52,572 KB
testcase_02 AC 32 ms
53,096 KB
testcase_03 AC 33 ms
51,896 KB
testcase_04 AC 610 ms
77,772 KB
testcase_05 AC 275 ms
77,964 KB
testcase_06 AC 275 ms
78,100 KB
testcase_07 AC 34 ms
52,484 KB
testcase_08 AC 615 ms
78,144 KB
testcase_09 AC 180 ms
76,484 KB
testcase_10 AC 177 ms
76,304 KB
testcase_11 AC 89 ms
76,236 KB
testcase_12 AC 36 ms
52,212 KB
testcase_13 AC 54 ms
64,160 KB
testcase_14 AC 55 ms
64,724 KB
testcase_15 AC 48 ms
60,372 KB
testcase_16 AC 40 ms
52,728 KB
testcase_17 AC 213 ms
76,476 KB
testcase_18 AC 37 ms
59,180 KB
testcase_19 AC 45 ms
63,816 KB
testcase_20 AC 40 ms
61,632 KB
testcase_21 AC 34 ms
52,908 KB
testcase_22 AC 220 ms
76,376 KB
testcase_23 AC 277 ms
77,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
N = int(readline())

X = [int(readline().replace(" ","")[::-1],2) 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 # 自白済み。
#   print(bin(status)[2:].zfill(3),"から",bin(1 << target)[2:].zfill(3),"を自白させたい")
    # X[target]が1の人が自白済みでなければコストが掛かる
    cost = dp[status]
    next_status = status | (1 << target)
    for i in range(N):
      if (X[target] >> i) & 1 and (status >> i) & 1 == 0:# 信頼している人が自白していない
        # iの人が自白したと嘘をつく
#       print(i,"が自白したと嘘をつく",A[i])
        next_status |= (1 << i)
        cost += A[i]
#   print("cost",cost,"が発生")
    if dp[next_status] > cost:
      dp[next_status] = cost
      
print(dp[-1])
0