結果

問題 No.943 取り調べ
ユーザー H20H20
提出日時 2022-01-26 12:51:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 847 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 155,044 KB
最終ジャッジ日時 2024-12-22 23:57:47
合計ジャッジ時間 12,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,880 KB
testcase_01 AC 46 ms
130,944 KB
testcase_02 AC 45 ms
58,880 KB
testcase_03 AC 48 ms
53,632 KB
testcase_04 TLE -
testcase_05 AC 1,004 ms
76,928 KB
testcase_06 AC 1,006 ms
76,672 KB
testcase_07 AC 45 ms
53,760 KB
testcase_08 TLE -
testcase_09 AC 409 ms
77,352 KB
testcase_10 AC 420 ms
77,268 KB
testcase_11 AC 329 ms
77,312 KB
testcase_12 AC 46 ms
53,632 KB
testcase_13 AC 100 ms
76,928 KB
testcase_14 AC 104 ms
76,800 KB
testcase_15 AC 59 ms
64,896 KB
testcase_16 AC 46 ms
54,144 KB
testcase_17 AC 520 ms
77,384 KB
testcase_18 AC 54 ms
61,056 KB
testcase_19 AC 98 ms
76,892 KB
testcase_20 AC 65 ms
66,944 KB
testcase_21 AC 45 ms
54,144 KB
testcase_22 AC 564 ms
76,928 KB
testcase_23 AC 1,152 ms
155,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N = int(input())
X = []
for _ in range(N):
    X.append(list(map(int,input().split())))

A = list(map(int,input().split()))
ans = 10**20
for i in range(2 ** N):
    cost = 0
    Lie = set()
    for j in range(N):
        if ((i >> j) & 1):
            cost+=A[j]
            Lie.add(j)
    
    M = [[] for _ in range(N)]
    CNT = [0]*N
    #上書きしちゃうが問題なし
    for i in range(N):
        for j in range(N):
            if X[i][j]==1 and (not j in Lie):
                M[j].append(i)
                CNT[i]+=1
    D = collections.deque()
    for i in range(N):
        if CNT[i]==0:
            D.append(i)
    while len(D):
        i = D.pop()
        for j in M[i]:
            CNT[j]-=1
            if CNT[j]==0:
                D.append(j)

    if sum(CNT)==0:
        ans = min(ans,cost)

print(ans)
0