結果

問題 No.357 品物の並び替え (Middle)
ユーザー lloyzlloyz
提出日時 2023-10-31 00:34:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 505 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 71,584 KB
最終ジャッジ日時 2024-09-25 17:27:07
合計ジャッジ時間 2,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
65,272 KB
testcase_01 AC 42 ms
55,200 KB
testcase_02 AC 45 ms
60,968 KB
testcase_03 AC 48 ms
61,484 KB
testcase_04 AC 54 ms
64,852 KB
testcase_05 AC 53 ms
64,016 KB
testcase_06 AC 43 ms
55,580 KB
testcase_07 AC 42 ms
54,256 KB
testcase_08 AC 59 ms
65,548 KB
testcase_09 AC 68 ms
69,828 KB
testcase_10 AC 59 ms
66,108 KB
testcase_11 AC 65 ms
70,200 KB
testcase_12 AC 80 ms
71,584 KB
testcase_13 AC 68 ms
68,840 KB
testcase_14 AC 61 ms
67,096 KB
testcase_15 AC 60 ms
67,904 KB
testcase_16 AC 61 ms
66,852 KB
testcase_17 AC 61 ms
67,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n, m = map(int, input().split())
G = defaultdict(list)
for _ in range(m):
    a, b, p = map(int, input().split())
    G[a].append((b, p))
DP = [-1 for _ in range(1 << n)]
DP[0] = 0
for bit in range(1 << n):
    for i in range(n):
        res = 0
        if (bit >> i) & 1:
            continue
        for j, p in G[i]:
            if (bit >> j) & 1:
                res += p
        nbit = bit | (1 << i)
        DP[nbit] = max(DP[nbit], DP[bit] + res)
print(DP[-1])
0