結果

問題 No.357 品物の並び替え (Middle)
ユーザー neterukunneterukun
提出日時 2019-10-22 20:33:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-07-04 18:00:07
合計ジャッジ時間 2,012 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
62,592 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 49 ms
59,904 KB
testcase_03 AC 45 ms
60,780 KB
testcase_04 AC 49 ms
62,080 KB
testcase_05 AC 49 ms
62,464 KB
testcase_06 AC 42 ms
57,856 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 54 ms
64,640 KB
testcase_09 AC 67 ms
67,712 KB
testcase_10 AC 55 ms
64,768 KB
testcase_11 AC 57 ms
64,768 KB
testcase_12 AC 70 ms
69,504 KB
testcase_13 AC 68 ms
67,712 KB
testcase_14 AC 69 ms
69,248 KB
testcase_15 AC 56 ms
66,176 KB
testcase_16 AC 59 ms
67,020 KB
testcase_17 AC 55 ms
64,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
info = [list(map(int, input().split())) for i in range(m)]

p = [[0]*n for i in range(n)]
for i in range(m):
    a, b, cost = info[i]
    p[a][b] = cost

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