結果

問題 No.357 品物の並び替え (Middle)
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-15 03:53:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 5,000 ms
コード長 1,258 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 76,452 KB
最終ジャッジ日時 2024-09-15 03:53:08
合計ジャッジ時間 2,603 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,512 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 43 ms
58,112 KB
testcase_03 AC 46 ms
59,392 KB
testcase_04 AC 78 ms
64,384 KB
testcase_05 AC 54 ms
64,256 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 59 ms
66,176 KB
testcase_09 AC 83 ms
76,148 KB
testcase_10 AC 69 ms
71,908 KB
testcase_11 AC 76 ms
70,164 KB
testcase_12 AC 100 ms
76,160 KB
testcase_13 AC 97 ms
76,364 KB
testcase_14 AC 81 ms
76,452 KB
testcase_15 AC 75 ms
71,068 KB
testcase_16 AC 77 ms
74,368 KB
testcase_17 AC 70 ms
72,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2040


MOD = 998244353

def main():
    N, M = map(int, input().split())
    items = []
    for _ in range(M):
        i1, i2, score = map(int, input().split())
        items.append((i1, i2, score))

    items_map = {}
    for b, a, score in items:
        if a not in items_map:
            items_map[a] = []
        items_map[a].append((b, score))
    
    bit_counts = [[] for _ in range(N + 1)]
    for bit in range(2 ** N):
        bit_count = 0
        for i in range(N):
            if bit & (1 << i) > 0:
                bit_count += 1
        bit_counts[bit_count].append(bit)
    
    dp = [-1] * (2 ** N)
    dp[0] = 0
    for bit_count in range(N):
        for bit in bit_counts[bit_count]:
            for j in range(N):
                if (1 << j) & bit == 0:
                    new_bit = (1 << j) | bit

                    add_score = 0
                    if j in items_map:
                        for b, score in items_map[j]:
                            if (1 << b) & bit > 0:
                                add_score += score
                    
                    dp[new_bit] = max(dp[new_bit], dp[bit] + add_score)
    
    print(dp[2 ** N - 1])












if __name__ == "__main__":
    main()
0