結果

問題 No.2408 Lakes and Fish
ユーザー KudeKude
提出日時 2023-08-11 21:25:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 90,304 KB
最終ジャッジ日時 2024-11-18 15:21:39
合計ジャッジ時間 4,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,888 KB
testcase_01 AC 38 ms
53,368 KB
testcase_02 AC 36 ms
53,288 KB
testcase_03 AC 39 ms
52,444 KB
testcase_04 AC 156 ms
89,960 KB
testcase_05 AC 155 ms
90,292 KB
testcase_06 AC 163 ms
89,888 KB
testcase_07 AC 182 ms
90,200 KB
testcase_08 AC 186 ms
90,284 KB
testcase_09 AC 186 ms
90,304 KB
testcase_10 AC 186 ms
90,056 KB
testcase_11 AC 133 ms
80,372 KB
testcase_12 AC 155 ms
86,808 KB
testcase_13 AC 96 ms
79,024 KB
testcase_14 AC 122 ms
80,344 KB
testcase_15 AC 166 ms
85,408 KB
testcase_16 AC 105 ms
82,508 KB
testcase_17 AC 102 ms
77,904 KB
testcase_18 AC 128 ms
84,144 KB
testcase_19 AC 159 ms
82,300 KB
testcase_20 AC 157 ms
77,280 KB
testcase_21 AC 164 ms
84,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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