結果

問題 No.943 取り調べ
ユーザー ああいいああいい
提出日時 2022-03-04 16:58:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 341 ms / 1,206 ms
コード長 874 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 76,556 KB
最終ジャッジ日時 2024-07-18 13:34:31
合計ジャッジ時間 3,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,264 KB
testcase_01 AC 39 ms
52,640 KB
testcase_02 AC 38 ms
52,184 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 341 ms
76,028 KB
testcase_05 AC 224 ms
76,224 KB
testcase_06 AC 224 ms
75,668 KB
testcase_07 AC 38 ms
52,156 KB
testcase_08 AC 339 ms
76,448 KB
testcase_09 AC 115 ms
75,764 KB
testcase_10 AC 141 ms
76,548 KB
testcase_11 AC 98 ms
76,504 KB
testcase_12 AC 39 ms
52,620 KB
testcase_13 AC 60 ms
67,480 KB
testcase_14 AC 67 ms
70,024 KB
testcase_15 AC 44 ms
60,376 KB
testcase_16 AC 38 ms
53,480 KB
testcase_17 AC 118 ms
76,336 KB
testcase_18 AC 39 ms
52,520 KB
testcase_19 AC 54 ms
65,380 KB
testcase_20 AC 45 ms
60,048 KB
testcase_21 AC 38 ms
53,024 KB
testcase_22 AC 121 ms
76,556 KB
testcase_23 AC 254 ms
76,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = [list(map(int,input().split())) for _ in range(N)]
A = list(map(int,input().split()))
G = [[] for _ in range(N)]
Gnum = [0] * N
for i in range(N):
    for j in range(N):
        if X[i][j]:
            G[j].append(i)
            Gnum[i] += 1
ans = 10 ** 8
for bit in range(1 << N):
    num = Gnum.copy()
    stack = []
    count = 0
    _sum = 0
    for i in range(N):
        if bit & (1 << i):
            _sum += A[i]
            stack.append(i)
            count += 1
            num[i] = 0
        else:
            if Gnum[i] == 0:
                stack.append(i)
                count += 1
    while stack:
        now = stack.pop()
        for v in G[now]:
            num[v] -= 1
            if num[v] == 0:
                stack.append(v)
                count += 1
    if count == N:
        if _sum <= ans:
            ans = _sum
print(ans)
0