結果

問題 No.943 取り調べ
ユーザー 👑 rin204rin204
提出日時 2022-02-14 09:15:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 436 ms / 1,206 ms
コード長 936 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-29 05:55:26
合計ジャッジ時間 4,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 291 ms
75,776 KB
testcase_05 AC 134 ms
75,648 KB
testcase_06 AC 141 ms
76,032 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 436 ms
76,032 KB
testcase_09 AC 119 ms
76,160 KB
testcase_10 AC 112 ms
76,288 KB
testcase_11 AC 113 ms
75,904 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 48 ms
59,008 KB
testcase_14 AC 49 ms
59,520 KB
testcase_15 AC 41 ms
52,480 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 137 ms
76,288 KB
testcase_18 AC 41 ms
52,352 KB
testcase_19 AC 62 ms
64,256 KB
testcase_20 AC 48 ms
59,136 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 AC 176 ms
76,160 KB
testcase_23 AC 337 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = [list(map(int, input().split())) for _ in range(n)]
in_ = [0] *  n
AND = 0
lst_ = []
for i in range(n):
    tmp = 0
    for j in range(n):
        if X[i][j]:
            in_[i] += 1
            tmp += 1
    if tmp == 0:
        lst_.append(i)
        AND |= 1 << i
A = list(map(int, input().split()))
ans = 1 << 30

for bit in range(1 << n):
    if bit & AND != 0:
        continue
    tot = 0
    lst = lst_.copy()
    cnt = len(lst)
    in_2 = in_.copy()
    for i in range(n):
        if bit >> i & 1:
            tot += A[i]
            cnt += 1
            in_2[i] = 0
            lst.append(i)
    if tot >= ans:
        continue
    
    while lst:
        i = lst.pop()
        for j in range(n):
            if X[j][i]:
                in_2[j] -= 1
                if in_2[j] == 0:
                    lst.append(j)
                    cnt += 1
    
    if cnt == n:
        ans = min(ans, tot)
print(ans)
0