結果
問題 | No.90 品物の並び替え |
ユーザー | tookunn_1213 |
提出日時 | 2016-06-15 00:41:29 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 460 bytes |
コンパイル時間 | 360 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 76,544 KB |
最終ジャッジ日時 | 2024-10-09 13:51:35 |
合計ジャッジ時間 | 1,790 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,096 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 | - |
ソースコード
def dfs(n,pre,scores,used,N): if n == N: return 0 ret = 0 for i in range(N): if used[i]:continue used[i] = True ret = max(ret,dfs(n + 1,i,scores,used,N) + scores[pre][i]) used[i] = False return ret N,M = map(int,input().split()) scores = [[0 for j in range(N + 1)] for i in range(N + 1)] used = [False for i in range(N)] for i in range(M): item1,item2,score = map(int,input().split()) scores[item1][item2] = score print (dfs(0,N,scores,used,N))