結果

問題 No.357 品物の並び替え (Middle)
ユーザー ryomacryomac
提出日時 2024-01-12 01:27:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 70,192 KB
最終ジャッジ日時 2024-09-27 20:42:39
合計ジャッジ時間 2,294 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,452 KB
testcase_01 AC 36 ms
52,876 KB
testcase_02 AC 42 ms
60,780 KB
testcase_03 AC 42 ms
61,288 KB
testcase_04 AC 48 ms
63,000 KB
testcase_05 AC 47 ms
63,200 KB
testcase_06 AC 41 ms
58,592 KB
testcase_07 AC 36 ms
51,888 KB
testcase_08 AC 51 ms
65,856 KB
testcase_09 AC 66 ms
68,580 KB
testcase_10 AC 52 ms
65,664 KB
testcase_11 AC 51 ms
65,036 KB
testcase_12 AC 68 ms
70,192 KB
testcase_13 AC 63 ms
67,616 KB
testcase_14 AC 61 ms
67,488 KB
testcase_15 AC 59 ms
70,140 KB
testcase_16 AC 55 ms
66,440 KB
testcase_17 AC 53 ms
65,516 KB
権限があれば一括ダウンロードができます

ソースコード

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
        cost = 0
        for j in range(N):
            if S >> j & 1:
                cost += score[i][j]
        dp[S | 1 << i] = max(dp[S | 1 << i], dp[S] + cost)
print(dp[-1])
0