結果

問題 No.943 取り調べ
ユーザー mkawa2mkawa2
提出日時 2021-04-07 18:29:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 445 ms / 1,206 ms
コード長 1,347 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-06-22 23:05:42
合計ジャッジ時間 4,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 369 ms
78,080 KB
testcase_05 AC 217 ms
76,416 KB
testcase_06 AC 204 ms
76,416 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 431 ms
78,848 KB
testcase_09 AC 226 ms
78,848 KB
testcase_10 AC 173 ms
77,440 KB
testcase_11 AC 192 ms
78,080 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 52 ms
62,976 KB
testcase_14 AC 63 ms
67,200 KB
testcase_15 AC 40 ms
52,480 KB
testcase_16 AC 36 ms
52,224 KB
testcase_17 AC 212 ms
78,208 KB
testcase_18 AC 41 ms
52,608 KB
testcase_19 AC 57 ms
65,792 KB
testcase_20 AC 37 ms
53,248 KB
testcase_21 AC 36 ms
52,224 KB
testcase_22 AC 225 ms
78,464 KB
testcase_23 AC 445 ms
78,080 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 u in range(n):
    s = SI()
    s = s.replace(" ", "")
    ss.append(int(s[::-1], 2))
aa = LI()

def ok(bit):
    us = [(u, s) for u, s in enumerate(ss)]
    for _ in range(n):
        nus = []
        ln=len(us)
        for u, s in us:
            if bit & s == s: bit |= 1 << u
            else: nus.append((u, s))
        if not nus: return True
        us = nus
        if ln==len(us):return False
    return False

ans = inf
for bit in range(1 << n):
    cost = sum(aa[u] for u in range(n) if bit >> u & 1)
    if cost >= ans: continue
    if ok(bit): ans = cost

print(ans)
0