結果

問題 No.357 品物の並び替え (Middle)
ユーザー roarisroaris
提出日時 2019-10-29 12:43:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 503 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 69,376 KB
最終ジャッジ日時 2024-09-14 21:27:13
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
61,440 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 45 ms
58,496 KB
testcase_03 AC 45 ms
58,368 KB
testcase_04 AC 50 ms
61,440 KB
testcase_05 AC 51 ms
61,440 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 53 ms
63,360 KB
testcase_09 AC 57 ms
63,616 KB
testcase_10 AC 55 ms
63,104 KB
testcase_11 AC 67 ms
69,376 KB
testcase_12 AC 71 ms
66,432 KB
testcase_13 AC 61 ms
64,128 KB
testcase_14 AC 58 ms
63,872 KB
testcase_15 AC 61 ms
66,560 KB
testcase_16 AC 55 ms
63,488 KB
testcase_17 AC 54 ms
62,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
scores = [[] for _ in range(N)]

for _ in range(M):
    item1, item2, score = map(int, input().split())
    scores[item2].append((item1, score))

dp = [0] * (1<<N)

for S in range((1<<N)-2, -1, -1):
    for n in range(N):
        if not (S>>n)&1:
            add = 0
            
            for prev, score in scores[n]:
                if (S>>prev)&1:
                    add += score
                    
            dp[S] = max(dp[S], dp[S|(1<<n)]+add)

print(dp[0])
0