結果

問題 No.90 品物の並び替え
ユーザー maspymaspy
提出日時 2020-01-29 22:46:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,093 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 113,048 KB
最終ジャッジ日時 2024-09-16 02:54:23
合計ジャッジ時間 6,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 453 ms
44,324 KB
testcase_01 AC 518 ms
50,464 KB
testcase_02 AC 453 ms
44,060 KB
testcase_03 AC 451 ms
44,444 KB
testcase_04 AC 445 ms
44,060 KB
testcase_05 AC 499 ms
50,848 KB
testcase_06 AC 496 ms
50,844 KB
testcase_07 AC 453 ms
44,184 KB
testcase_08 AC 455 ms
44,064 KB
testcase_09 AC 1,093 ms
113,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np
import itertools

N,M = map(int,readline().split())
m = map(int,read().split())
ABC = zip(m,m,m)

perms = np.array(list(itertools.permutations(range(N))))

score = np.zeros(len(perms), np.int64)

for a,b,c in ABC:
    score[perms[:,a] < perms[:,b]] += c

answer = score.max()
print(answer)
0