結果

問題 No.943 取り調べ
ユーザー mkawa2mkawa2
提出日時 2021-04-07 18:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 1,206 ms
コード長 1,183 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-06-22 23:33:28
合計ジャッジ時間 3,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 167 ms
82,048 KB
testcase_05 AC 189 ms
83,584 KB
testcase_06 AC 182 ms
83,072 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 172 ms
82,048 KB
testcase_09 AC 97 ms
77,184 KB
testcase_10 AC 97 ms
77,312 KB
testcase_11 AC 78 ms
76,672 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 49 ms
61,696 KB
testcase_14 AC 53 ms
63,616 KB
testcase_15 AC 36 ms
52,608 KB
testcase_16 AC 35 ms
52,480 KB
testcase_17 AC 97 ms
77,312 KB
testcase_18 AC 37 ms
52,736 KB
testcase_19 AC 47 ms
61,568 KB
testcase_20 AC 38 ms
52,864 KB
testcase_21 AC 37 ms
52,352 KB
testcase_22 AC 95 ms
78,080 KB
testcase_23 AC 182 ms
82,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(0, 1), (1, 0), (1, 1), (1, -1)]
inf = 10**19
# md = 998244353
md = 10**9+7

n = II()
ss = []
for _ in range(n):
    s = SI()
    s = s.replace(" ", "")
    ss.append(int(s[::-1], 2))
aa = LI()

def chmin(bit, val):
    if val < dp[bit]: dp[bit] = val

dp = [inf]*(1 << n)
dp[0] = 0
for bit in range(1 << n):
    pre = dp[bit]
    for i, s in enumerate(ss):
        if bit >> i & 1: continue
        nbit = bit | 1 << i
        if s & bit == s: chmin(nbit, pre)
        else: chmin(nbit, pre+aa[i])

print(dp[-1])
0