結果

問題 No.90 品物の並び替え
ユーザー るこーそーるこーそー
提出日時 2024-09-24 16:09:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 475 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 65,008 KB
最終ジャッジ日時 2024-09-24 16:09:28
合計ジャッジ時間 1,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,568 KB
testcase_01 AC 47 ms
62,892 KB
testcase_02 AC 35 ms
53,840 KB
testcase_03 AC 42 ms
61,680 KB
testcase_04 AC 43 ms
61,332 KB
testcase_05 AC 49 ms
62,456 KB
testcase_06 AC 46 ms
62,548 KB
testcase_07 AC 39 ms
59,056 KB
testcase_08 AC 36 ms
52,532 KB
testcase_09 AC 50 ms
65,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
items=[[0]*n for _ in range(n)]
for _ in range(m):
    item1,item2,score=map(int,input().split())
    item1,item2=item1-1,item2-1
    items[item1][item2]=score

dp=[0]*(1<<n)
for mask in range(1<<n):
    for i in range(n):
        if (mask>>i&1):continue
        
        tot=0
        for j in range(n):
            if mask>>j&1:
                tot+=items[j][i]
            
        dp[mask|1<<i]=max(dp[mask|1<<i],dp[mask]+tot)

print(dp[-1])
0