結果

問題 No.943 取り調べ
ユーザー tanon710tanon710
提出日時 2020-05-04 22:06:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 646 ms / 1,206 ms
コード長 842 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-06-25 00:55:00
合計ジャッジ時間 4,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,392 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 359 ms
76,420 KB
testcase_05 AC 646 ms
76,032 KB
testcase_06 AC 643 ms
75,904 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 360 ms
76,544 KB
testcase_09 AC 160 ms
76,244 KB
testcase_10 AC 177 ms
76,416 KB
testcase_11 AC 135 ms
76,928 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 64 ms
66,432 KB
testcase_14 AC 73 ms
68,480 KB
testcase_15 AC 49 ms
58,880 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 174 ms
76,416 KB
testcase_18 AC 41 ms
52,608 KB
testcase_19 AC 65 ms
66,176 KB
testcase_20 AC 41 ms
52,736 KB
testcase_21 AC 41 ms
52,224 KB
testcase_22 AC 162 ms
76,544 KB
testcase_23 AC 452 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
check=[list(map(int,input().split())) for _ in range(n)]
for i in range(n):
    tmp=0
    for j in range(n):
        if check[i][j]==1:
            tmp+=2**(n-1-j)
    check[i]=tmp
cost=list(map(int,input().split()))
ans=10**18
for i in range(0,2**n):
    flag=format(i,'b')
    s=set()
    tmp=i
    for j in range(n):
        if (i>>j)&1:
            s.add(n-1-j)
    prev=len(s)
    for _ in range(n):
        if len(s)==n:
            break
        for j in range(n):
            if j in s:
                continue
            if (~tmp)&check[j]==0:
                s.add(j)
                tmp+=2**(n-1-j)
        if len(s)==prev:
            break
        prev=len(s)
    if len(s)==n:
        tmp=0
        for j in range(n):
            if (i>>j)&1:
                tmp+=cost[n-1-j]
        ans=min(ans,tmp)
print(ans)
0