結果

問題 No.2408 Lakes and Fish
ユーザー mattu34mattu34
提出日時 2023-09-04 23:48:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 93,948 KB
最終ジャッジ日時 2024-06-22 21:02:04
合計ジャッジ時間 4,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,768 KB
testcase_01 AC 37 ms
55,396 KB
testcase_02 AC 38 ms
54,368 KB
testcase_03 AC 38 ms
54,632 KB
testcase_04 AC 151 ms
93,252 KB
testcase_05 AC 150 ms
93,376 KB
testcase_06 AC 162 ms
93,012 KB
testcase_07 AC 181 ms
93,756 KB
testcase_08 AC 182 ms
93,948 KB
testcase_09 AC 280 ms
93,744 KB
testcase_10 AC 178 ms
93,732 KB
testcase_11 AC 131 ms
81,828 KB
testcase_12 AC 149 ms
89,164 KB
testcase_13 AC 97 ms
80,004 KB
testcase_14 AC 122 ms
81,800 KB
testcase_15 AC 160 ms
87,796 KB
testcase_16 AC 107 ms
83,752 KB
testcase_17 AC 100 ms
78,268 KB
testcase_18 AC 129 ms
86,636 KB
testcase_19 AC 158 ms
83,576 KB
testcase_20 AC 154 ms
77,784 KB
testcase_21 AC 162 ms
86,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import heapq
import bisect

INF = float("inf")

N, M = map(int, input().split())
L = [-INF] + list(map(int, input().split())) + [INF]
ans = 0
for _ in range(M):
    F, B, W = map(int, input().split())
    pl = bisect.bisect_left(L, F)
    ans += max(B, W - min(L[pl] - F, F - L[pl - 1]))
    # print(F, B, W - min(L[pl] - F, F - L[pl - 1]))
print(ans)
0