結果
問題 | No.90 品物の並び替え |
ユーザー | koyopro |
提出日時 | 2015-09-20 22:47:21 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 3,078 ms / 5,000 ms |
コード長 | 555 bytes |
コンパイル時間 | 40 ms |
コンパイル使用メモリ | 6,784 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-07-19 08:24:36 |
合計ジャッジ時間 | 4,574 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,272 KB |
testcase_01 | AC | 278 ms
6,272 KB |
testcase_02 | AC | 10 ms
6,144 KB |
testcase_03 | AC | 32 ms
6,272 KB |
testcase_04 | AC | 39 ms
6,272 KB |
testcase_05 | AC | 284 ms
6,400 KB |
testcase_06 | AC | 236 ms
6,144 KB |
testcase_07 | AC | 14 ms
6,144 KB |
testcase_08 | AC | 10 ms
6,144 KB |
testcase_09 | AC | 3,078 ms
6,272 KB |
ソースコード
# -*- coding: utf-8 -*- N, M = map(int, raw_input().split()) l = [] for i in xrange(M): k = map(int, raw_input().split()) l.append(k) def score(m): score = 0 for k in l: if m[k[0]] < m[k[1]]: score += k[2] return score maxs = 0 def dp(l, m): if len(l) == 0: return score(m) mx = 0 for i in xrange(len(l)): froml = list(l) tol = list(m) tol.append(froml.pop(i)) c = dp(froml, tol) mx = max(mx, c) return mx start = [i for i in xrange(N)] print dp(start, [])