結果
問題 | No.90 品物の並び替え |
ユーザー | rlangevin |
提出日時 | 2023-01-08 18:24:48 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 51 ms / 5,000 ms |
コード長 | 450 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 64,476 KB |
最終ジャッジ日時 | 2024-05-09 09:59:53 |
合計ジャッジ時間 | 1,260 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,684 KB |
testcase_01 | AC | 45 ms
63,500 KB |
testcase_02 | AC | 36 ms
52,460 KB |
testcase_03 | AC | 40 ms
58,604 KB |
testcase_04 | AC | 41 ms
59,468 KB |
testcase_05 | AC | 45 ms
64,476 KB |
testcase_06 | AC | 46 ms
63,612 KB |
testcase_07 | AC | 36 ms
53,592 KB |
testcase_08 | AC | 33 ms
53,284 KB |
testcase_09 | AC | 51 ms
64,328 KB |
ソースコード
N, M = map(int, input().split()) G = [[] for i in range(N)] for i in range(M): A, B, C = map(int, input().split()) G[B].append((A, C)) dp = [-10 ** 18] * (1 << N) dp[0] = 0 for i in range(1 << N): for j in range(N): cnt = 0 if (i >> j) & 1: continue for u, c in G[j]: if (i >> u) & 1: cnt += c dp[i | (1 << j)] = max(dp[i | (1 << j)], dp[i] + cnt) print(dp[-1])