結果

問題 No.357 品物の並び替え (Middle)
ユーザー nebukuro09nebukuro09
提出日時 2016-10-21 13:31:59
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 434 ms / 5,000 ms
コード長 529 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 76,792 KB
実行使用メモリ 103,152 KB
最終ジャッジ日時 2024-05-02 21:55:28
合計ジャッジ時間 5,268 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
78,240 KB
testcase_01 AC 74 ms
76,032 KB
testcase_02 AC 98 ms
78,376 KB
testcase_03 AC 94 ms
78,592 KB
testcase_04 AC 113 ms
78,252 KB
testcase_05 AC 116 ms
78,728 KB
testcase_06 AC 78 ms
76,312 KB
testcase_07 AC 77 ms
75,412 KB
testcase_08 AC 139 ms
79,284 KB
testcase_09 AC 293 ms
88,440 KB
testcase_10 AC 186 ms
80,624 KB
testcase_11 AC 183 ms
80,244 KB
testcase_12 AC 434 ms
103,152 KB
testcase_13 AC 294 ms
88,836 KB
testcase_14 AC 289 ms
88,412 KB
testcase_15 AC 187 ms
80,672 KB
testcase_16 AC 213 ms
82,604 KB
testcase_17 AC 181 ms
80,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, raw_input().split())
score = [[0 for j in xrange(N)] for i in xrange(N)]
for _ in xrange(M):
    i1, i2, s = map(int, raw_input().split())
    score[i1-1][i2-1] = s

mem = {}
def rec(p, b):
    if (p, b) in mem:
        return mem[(p, b)]
    ret = sum(score[i][p] for i in xrange(N) if (1<<i) & b)
    orig_ret = ret
    for i in xrange(N):
        if not ((1 << i) & b):
            ret = max(ret, rec(i, b+(1<<i))+orig_ret)
    mem[(p, b)] = ret
    return ret

print max(rec(i, 1<<i) for i in xrange(N))
    
0