結果

問題 No.90 品物の並び替え
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-02-14 17:36:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 521 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 104,080 KB
最終ジャッジ日時 2024-09-22 06:31:33
合計ジャッジ時間 9,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,676 KB
testcase_01 AC 640 ms
79,748 KB
testcase_02 AC 39 ms
52,404 KB
testcase_03 AC 147 ms
77,824 KB
testcase_04 AC 179 ms
77,232 KB
testcase_05 AC 722 ms
79,296 KB
testcase_06 AC 561 ms
79,544 KB
testcase_07 AC 67 ms
70,512 KB
testcase_08 AC 39 ms
54,340 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy
# -*- coding: utf-8 -*-

import heapq
import itertools


if __name__ == "__main__":
    n, m = map(int, input().split())
    table = {(item1, item2, score) for item1, item2, score in (
        map(int, input().split()) for i in range(m))}
    sums = []
    for items_p in itertools.permutations(range(n)):
        heapq.heappush(sums,
                       -sum(score for (item1, item2, score) in table
                            if items_p.index(item1) < items_p.index(item2)))
    print(-sums[0])
0