結果
問題 | No.943 取り調べ |
ユーザー | ganariya |
提出日時 | 2019-11-14 21:50:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 958 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 17,952 KB |
最終ジャッジ日時 | 2024-09-24 22:56:30 |
合計ジャッジ時間 | 2,969 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
17,952 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 28 ms
10,752 KB |
testcase_03 | AC | 28 ms
10,880 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
from collections import deque N = int(input()) X = [list(map(int, input().split())) for i in range(N)] A = [int(x) for x in input().split()] def isGood(bit): ink = [0] * N expanded = [False] * N for i in range(N): for j in range(N): if X[i][j]: ink[i] += 1 Q = deque() for i in range(N): if bit & (1 << i): ink[i] = 0 if ink[i] == 0: Q.append(i) while len(Q) > 0: d = Q.popleft() if expanded[d]: continue expanded[d] = True for i in range(N): if X[i][d] and (not expanded[i]): ink[i] -= 1 if ink[i] == 0: Q.append(i) return expanded.count(True) == N ans = 1e20 for bit in range(1 << N): cost = 0 for i in range(N): if bit & (1 << i): cost += A[i] if isGood(bit): ans = min(ans, cost) print(ans)