結果

問題 No.357 品物の並び替え (Middle)
ユーザー 👑 rin204rin204
提出日時 2022-07-05 16:26:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-12-15 23:11:54
合計ジャッジ時間 2,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,056 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 48 ms
59,264 KB
testcase_03 AC 47 ms
59,008 KB
testcase_04 AC 55 ms
61,312 KB
testcase_05 AC 54 ms
61,440 KB
testcase_06 AC 42 ms
52,736 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 64 ms
64,512 KB
testcase_09 AC 68 ms
70,016 KB
testcase_10 AC 63 ms
66,176 KB
testcase_11 AC 65 ms
65,792 KB
testcase_12 AC 91 ms
76,288 KB
testcase_13 AC 71 ms
70,400 KB
testcase_14 AC 70 ms
70,144 KB
testcase_15 AC 63 ms
65,792 KB
testcase_16 AC 66 ms
67,328 KB
testcase_17 AC 65 ms
66,304 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