結果

問題 No.90 品物の並び替え
ユーザー fgshunfgshun
提出日時 2020-09-27 10:07:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,433 ms / 5,000 ms
コード長 627 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-30 11:18:02
合計ジャッジ時間 4,418 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 260 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 54 ms
10,624 KB
testcase_04 AC 54 ms
10,624 KB
testcase_05 AC 260 ms
10,624 KB
testcase_06 AC 262 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 2,433 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools

def resolve(in_):
    N, M = map(int, next(in_).split())

    scores = [[0] * N for _ in range(N)]
    for item1, item2, score in (map(int, line.split()) for line in itertools.islice(in_, M)):
        scores[item1][item2] = score

    ans = 0
    for _items in itertools.permutations(range(N)):
        temp = 0
        for i, item1 in enumerate(_items, 1):
            for item2 in _items[i:]:
                temp += scores[item1][item2]
            ans = max(ans, temp)
    return ans
    

def main():
    ans = resolve(sys.stdin.buffer)

    print(ans)


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