結果

問題 No.357 品物の並び替え (Middle)
ユーザー ryomacryomac
提出日時 2024-01-12 01:06:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 81,444 KB
実行使用メモリ 72,572 KB
最終ジャッジ日時 2024-01-12 01:06:23
合計ジャッジ時間 4,331 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
53,460 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
score = [[0] * N for _ in range(N)]
for _ in range(M):
    x, y, z = map(int, input().split())
    score[x][y] = z


dp = [0] * (1 << N)
for S in range(1 << N):
    for i in range(N):
        if S >> i & 1:
            continue
        for j in range(N):
            if S >> j & 1:
                dp[S | 1 << i] = max(dp[S | 1 << i], dp[S] + score[j][i])
print(dp[-1])
0