結果

問題 No.357 品物の並び替え (Middle)
ユーザー 👑 rin204rin204
提出日時 2022-07-05 16:26:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 76,132 KB
最終ジャッジ日時 2024-05-09 10:58:34
合計ジャッジ時間 1,942 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,716 KB
testcase_01 AC 36 ms
53,352 KB
testcase_02 AC 42 ms
60,128 KB
testcase_03 AC 41 ms
59,088 KB
testcase_04 AC 47 ms
61,544 KB
testcase_05 AC 46 ms
62,484 KB
testcase_06 AC 37 ms
53,256 KB
testcase_07 AC 37 ms
52,836 KB
testcase_08 AC 52 ms
64,960 KB
testcase_09 AC 58 ms
70,772 KB
testcase_10 AC 56 ms
67,568 KB
testcase_11 AC 55 ms
66,040 KB
testcase_12 AC 77 ms
76,132 KB
testcase_13 AC 61 ms
70,344 KB
testcase_14 AC 59 ms
70,164 KB
testcase_15 AC 55 ms
67,552 KB
testcase_16 AC 56 ms
69,100 KB
testcase_17 AC 55 ms
66,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = [[0] * n for _ in range(n)]
for _ in range(m):
    i, j, s = map(int, input().split())
    A[i - 1][j - 1] += s

dp = [0] * (1 << n)
for bit in range(1, 1 << n):
    bef = []
    aft = []
    for i in range(n):
        if bit >> i & 1:
            bef.append(i)
        else:
            aft.append(i)
    for j in aft:
        nbit = bit | (1 << j)
        tot = 0
        for i in bef:
            tot += A[i][j]
        dp[nbit] = max(dp[nbit], dp[bit] + tot)

print(dp[-1])
0