結果

問題 No.357 品物の並び替え (Middle)
ユーザー rlangevinrlangevin
提出日時 2023-01-08 18:26:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 69,344 KB
最終ジャッジ日時 2024-12-15 21:59:55
合計ジャッジ時間 2,328 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
62,400 KB
testcase_01 AC 38 ms
53,748 KB
testcase_02 AC 43 ms
58,544 KB
testcase_03 AC 44 ms
59,180 KB
testcase_04 AC 51 ms
63,384 KB
testcase_05 AC 53 ms
63,064 KB
testcase_06 AC 39 ms
52,072 KB
testcase_07 AC 38 ms
52,336 KB
testcase_08 AC 53 ms
64,024 KB
testcase_09 AC 60 ms
67,844 KB
testcase_10 AC 57 ms
65,472 KB
testcase_11 AC 55 ms
64,852 KB
testcase_12 AC 74 ms
69,344 KB
testcase_13 AC 61 ms
65,036 KB
testcase_14 AC 58 ms
65,452 KB
testcase_15 AC 62 ms
68,872 KB
testcase_16 AC 57 ms
65,752 KB
testcase_17 AC 54 ms
63,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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])
0