結果

問題 No.2408 Lakes and Fish
ユーザー lloyzlloyz
提出日時 2023-08-17 10:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 89,964 KB
最終ジャッジ日時 2024-11-26 06:27:51
合計ジャッジ時間 4,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,144 KB
testcase_01 AC 35 ms
52,820 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 37 ms
52,540 KB
testcase_04 AC 117 ms
89,224 KB
testcase_05 AC 119 ms
89,152 KB
testcase_06 AC 121 ms
89,048 KB
testcase_07 AC 147 ms
89,964 KB
testcase_08 AC 146 ms
89,948 KB
testcase_09 AC 152 ms
89,960 KB
testcase_10 AC 149 ms
89,672 KB
testcase_11 AC 106 ms
79,040 KB
testcase_12 AC 125 ms
86,308 KB
testcase_13 AC 81 ms
77,832 KB
testcase_14 AC 99 ms
79,344 KB
testcase_15 AC 129 ms
84,620 KB
testcase_16 AC 88 ms
81,152 KB
testcase_17 AC 82 ms
76,100 KB
testcase_18 AC 102 ms
83,612 KB
testcase_19 AC 124 ms
81,232 KB
testcase_20 AC 123 ms
75,888 KB
testcase_21 AC 127 ms
83,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
import sys
input = sys.stdin.readline

n, m = map(int, input().split())
L = list(map(int, input().split()))
ans = 0
for _ in range(m):
    f, b, w = map(int, input().split())
    idx = bisect_left(L, f)
    res = b
    if idx < n:
        res = max(res, w - (L[idx] - f))
    if idx > 0:
        res = max(res, w - (f - L[idx - 1]))
    ans += res
print(ans)
0