結果
問題 | No.90 品物の並び替え |
ユーザー | piconic_X |
提出日時 | 2016-08-24 20:54:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 702 bytes |
コンパイル時間 | 333 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 98,560 KB |
最終ジャッジ日時 | 2024-11-08 02:10:37 |
合計ジャッジ時間 | 8,845 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 550 ms
18,944 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 66 ms
11,776 KB |
testcase_04 | AC | 85 ms
11,648 KB |
testcase_05 | AC | 621 ms
19,200 KB |
testcase_06 | AC | 455 ms
19,072 KB |
testcase_07 | AC | 36 ms
10,880 KB |
testcase_08 | AC | 31 ms
10,624 KB |
testcase_09 | TLE | - |
ソースコード
def eval(arr, reg): score = 0 for r in reg: i1 = arr.index(r[0]) i2 = arr.index(r[1]) if i1 < i2: score += r[2] return score def make_arr(N): A = [] def sub(arr, nums): if nums == set(): A.append(arr) else: for i in nums: arr_ = arr.copy() arr_.append(i) sub(arr_, nums-{i}) sub([], set([i for i in range(N)])) return A def main(): [N, M] = list(map(int, input().split())) reg = [] for i in range(M): reg.append(list(map(int, input().split()))) A = make_arr(N) res = [eval(a, reg) for a in A] print(max(res)) main()