結果
問題 | No.90 品物の並び替え |
ユーザー | ytft |
提出日時 | 2022-11-10 00:51:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 485 bytes |
コンパイル時間 | 420 ms |
コンパイル使用メモリ | 82,104 KB |
実行使用メモリ | 69,996 KB |
最終ジャッジ日時 | 2024-07-23 05:36:25 |
合計ジャッジ時間 | 1,550 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,224 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import sys input=lambda:sys.stdin.readline().rstrip() N,M=list(map(int,input().split())) score=[[0 for i in range(N)] for j in range(N)] for i in range(M): t=list(map(int,input().split())) score[t[0]][t[1]]=t[2] dp=[[-float('inf') for i in range(1<<N)] for j in range(N)] for j in range(1<<N): for i in range(N): if j==(1<<i): dp[i][j]=0 for k in range(N): if j&(1<<k)==0: dp[k][j+(1<<k)]=max(dp[k][j+(1<<k)],dp[i][j]+score[i][k]) print(max([i[(1<<N)-1] for i in dp]))