結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
86,592 KB
testcase_01 AC 124 ms
86,432 KB
testcase_02 AC 125 ms
86,696 KB
testcase_03 AC 125 ms
86,752 KB
testcase_04 AC 698 ms
91,092 KB
testcase_05 AC 243 ms
91,312 KB
testcase_06 AC 243 ms
91,284 KB
testcase_07 AC 125 ms
86,620 KB
testcase_08 AC 697 ms
91,112 KB
testcase_09 AC 194 ms
89,548 KB
testcase_10 AC 197 ms
89,964 KB
testcase_11 AC 169 ms
89,568 KB
testcase_12 AC 122 ms
86,592 KB
testcase_13 AC 139 ms
89,088 KB
testcase_14 AC 141 ms
89,012 KB
testcase_15 AC 124 ms
86,852 KB
testcase_16 AC 123 ms
86,356 KB
testcase_17 AC 213 ms
89,660 KB
testcase_18 AC 124 ms
86,596 KB
testcase_19 AC 140 ms
89,104 KB
testcase_20 AC 128 ms
86,872 KB
testcase_21 AC 122 ms
86,576 KB
testcase_22 AC 231 ms
89,768 KB
testcase_23 AC 283 ms
91,224 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):
        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