結果

問題 No.943 取り調べ
ユーザー tcltktcltk
提出日時 2021-05-19 16:35:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 1,206 ms
コード長 1,047 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,520 KB
最終ジャッジ日時 2024-10-09 20:24:24
合計ジャッジ時間 4,672 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
86,528 KB
testcase_01 AC 131 ms
86,400 KB
testcase_02 AC 132 ms
86,656 KB
testcase_03 AC 131 ms
86,400 KB
testcase_04 AC 135 ms
88,832 KB
testcase_05 AC 170 ms
91,520 KB
testcase_06 AC 167 ms
91,520 KB
testcase_07 AC 128 ms
86,456 KB
testcase_08 AC 131 ms
88,576 KB
testcase_09 AC 149 ms
89,600 KB
testcase_10 AC 148 ms
89,728 KB
testcase_11 AC 145 ms
89,088 KB
testcase_12 AC 128 ms
86,656 KB
testcase_13 AC 127 ms
86,784 KB
testcase_14 AC 130 ms
87,296 KB
testcase_15 AC 131 ms
86,784 KB
testcase_16 AC 130 ms
86,656 KB
testcase_17 AC 146 ms
89,344 KB
testcase_18 AC 130 ms
86,528 KB
testcase_19 AC 127 ms
86,528 KB
testcase_20 AC 128 ms
86,536 KB
testcase_21 AC 128 ms
86,784 KB
testcase_22 AC 134 ms
87,412 KB
testcase_23 AC 155 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N = int(input())
    X = [list(map(int, input().split())) for _ in range(N)]
    Dependant = [[j for j in range(N) if X[i][j] == 1] for i in range(N)]
    A = list(map(int, input().split()))

    dp = [10**10] * (1<<N)
    dp[0] = 0

    for s in range(1<<N):
        if dp[s] == 10**10:
            continue
        for i in range(N):
            if s & (1<<i):
                continue
            v = dp[s]
            s1 = s | (1<<i)
            for j in Dependant[i]:
                if not(s & (1<<j)):
                    v += A[j]
                    s1 |= (1<<j)
            dp[s1] = min(dp[s1], v)

    ans = dp[(1<<N)-1]
    print(ans)


if __name__ == '__main__':
    main()
0