結果

問題 No.943 取り調べ
ユーザー neterukunneterukun
提出日時 2019-12-21 10:23:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 659 ms / 1,206 ms
コード長 597 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-07-19 01:43:48
合計ジャッジ時間 5,469 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 450 ms
75,904 KB
testcase_05 AC 659 ms
75,904 KB
testcase_06 AC 655 ms
75,520 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 449 ms
76,032 KB
testcase_09 AC 185 ms
75,776 KB
testcase_10 AC 166 ms
76,160 KB
testcase_11 AC 117 ms
76,160 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 59 ms
64,000 KB
testcase_14 AC 61 ms
65,536 KB
testcase_15 AC 48 ms
60,032 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 172 ms
75,776 KB
testcase_18 AC 46 ms
58,496 KB
testcase_19 AC 63 ms
66,048 KB
testcase_20 AC 53 ms
61,312 KB
testcase_21 AC 40 ms
52,096 KB
testcase_22 AC 176 ms
75,776 KB
testcase_23 AC 649 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = [list(map(int, input().split())) for i in range(n)]
a = list(map(int, input().split()))

bit_state = [0] * n
for i in range(n):
    for j in range(n):
        if x[i][j] == 1:
            bit_state[i] += 2 ** j

ans = 10**9
for bit_mask in range(1 << n):
    tmp_ans = 0
    tmp = bit_mask
    for i in range(n):
        if (bit_mask >> i) & 1:
            tmp_ans += a[i]
    for _ in range(n):
        for i in range(n):
            if tmp & bit_state[i] == bit_state[i]:
                tmp |= (1 << i)
    if tmp == (1 << n) - 1:
        ans = min(ans, tmp_ans)
print(ans)
0