結果

問題 No.357 品物の並び替え (Middle)
ユーザー roarisroaris
提出日時 2019-10-29 12:37:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 5,000 ms
コード長 656 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-09-14 21:27:11
合計ジャッジ時間 2,986 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
62,336 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 49 ms
58,496 KB
testcase_03 AC 50 ms
58,368 KB
testcase_04 AC 57 ms
61,440 KB
testcase_05 AC 60 ms
62,720 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 42 ms
51,712 KB
testcase_08 AC 64 ms
63,872 KB
testcase_09 AC 91 ms
75,776 KB
testcase_10 AC 73 ms
68,096 KB
testcase_11 AC 74 ms
68,992 KB
testcase_12 AC 102 ms
75,776 KB
testcase_13 AC 90 ms
75,904 KB
testcase_14 AC 93 ms
76,160 KB
testcase_15 AC 87 ms
73,216 KB
testcase_16 AC 87 ms
75,520 KB
testcase_17 AC 74 ms
68,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def rec(S):
    if memo[S] != -1:
        return memo[S]
    
    if S == (1<<N)-1:
        memo[S] = 0
        return 0
    
    res = 0
    
    for n in range(N):
        if not (S>>n)&1:
            add = 0
            
            for prev, score in scores[n]:
                if (S>>prev)&1:
                    add += score
                    
            res = max(res, rec(S|(1<<n))+add)
    
    memo[S] = res
    
    return res

N, M = map(int, input().split())
scores = [[] for _ in range(N)]

for _ in range(M):
    item1, item2, score = map(int, input().split())
    scores[item2].append((item1, score))

memo = [-1] * (1<<N)

print(rec(0))
0