結果

問題 No.943 取り調べ
ユーザー rlangevinrlangevin
提出日時 2023-02-10 08:54:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 1,206 ms
コード長 655 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 75,964 KB
最終ジャッジ日時 2024-07-07 05:57:08
合計ジャッジ時間 2,792 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,856 KB
testcase_01 AC 31 ms
52,956 KB
testcase_02 AC 33 ms
53,556 KB
testcase_03 AC 31 ms
53,228 KB
testcase_04 AC 92 ms
75,356 KB
testcase_05 AC 288 ms
75,496 KB
testcase_06 AC 285 ms
75,820 KB
testcase_07 AC 32 ms
52,800 KB
testcase_08 AC 90 ms
75,764 KB
testcase_09 AC 71 ms
75,612 KB
testcase_10 AC 69 ms
75,936 KB
testcase_11 AC 58 ms
72,524 KB
testcase_12 AC 33 ms
52,012 KB
testcase_13 AC 43 ms
64,588 KB
testcase_14 AC 44 ms
64,100 KB
testcase_15 AC 36 ms
58,900 KB
testcase_16 AC 32 ms
53,620 KB
testcase_17 AC 62 ms
73,752 KB
testcase_18 AC 33 ms
53,560 KB
testcase_19 AC 39 ms
60,916 KB
testcase_20 AC 34 ms
59,112 KB
testcase_21 AC 33 ms
52,704 KB
testcase_22 AC 62 ms
71,684 KB
testcase_23 AC 130 ms
75,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = []
for i in range(N):
    x = list(map(int, input().split()))
    now = 0
    for j in range(N):
        now += x[j] * (1 << j)
    X.append(now)

A = list(map(int, input().split()))
ans = 10 ** 18
N2 = 1 << N
for s in range(N2):
    now = s
    for i in range(N):
        pre = now
        for j in range(N):
            if (now >> j) & 1:
                continue
            if X[j] == (now & X[j]):
                now += 1 << j
        if pre == now:
            break
    if now == (1 << N) - 1:
        v = 0
        for i in range(N):
            if (s >> i) & 1:
                v += A[i]
        ans = min(ans, v)
print(ans)
0