結果

問題 No.943 取り調べ
ユーザー r_ishidar_ishida
提出日時 2020-02-02 21:12:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 1,206 ms
コード長 667 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 76,312 KB
最終ジャッジ日時 2024-09-18 21:25:23
合計ジャッジ時間 2,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,384 KB
testcase_01 AC 40 ms
53,368 KB
testcase_02 AC 40 ms
52,680 KB
testcase_03 AC 39 ms
53,024 KB
testcase_04 AC 117 ms
75,732 KB
testcase_05 AC 106 ms
75,980 KB
testcase_06 AC 114 ms
76,096 KB
testcase_07 AC 39 ms
52,948 KB
testcase_08 AC 135 ms
75,660 KB
testcase_09 AC 91 ms
76,312 KB
testcase_10 AC 82 ms
76,088 KB
testcase_11 AC 83 ms
75,980 KB
testcase_12 AC 39 ms
51,880 KB
testcase_13 AC 47 ms
60,888 KB
testcase_14 AC 47 ms
61,256 KB
testcase_15 AC 40 ms
54,148 KB
testcase_16 AC 39 ms
53,420 KB
testcase_17 AC 89 ms
75,836 KB
testcase_18 AC 40 ms
52,752 KB
testcase_19 AC 48 ms
61,136 KB
testcase_20 AC 41 ms
53,288 KB
testcase_21 AC 40 ms
53,540 KB
testcase_22 AC 91 ms
75,936 KB
testcase_23 AC 193 ms
76,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = []
y = []
for i in range(n):
    tmp = list(map(int, input().split()))
    y.append(tmp)
    tmp2 = 0
    for j in range(n):
        tmp2 += y[i][j] * 2 ** j
    x.append(tmp2)
a = list(map(int, input().split()))

ans = sum(a)

for i in range(2 ** n):
    tmp = 0
    for j in range(n):
        tmp += a[j] if ((i >> j) & 1) == 1 else 0
    if tmp >= ans:
        continue
    l = i
    c = 0
    k = -1
    while k + 1 < n:
        k += 1
        if ((c >> k) & 1) == 1:
            continue
        if (l & x[k]) == x[k]:
            c |= 1 << k
            l |= 1 << k
            k = -1

    if c == (1 << n) - 1:
        ans = tmp
print(ans)
0