結果

問題 No.2408 Lakes and Fish
ユーザー ntudantuda
提出日時 2023-08-12 11:29:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 91,608 KB
最終ジャッジ日時 2024-11-19 12:09:25
合計ジャッジ時間 5,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,820 KB
testcase_01 AC 38 ms
52,068 KB
testcase_02 AC 37 ms
53,420 KB
testcase_03 AC 38 ms
52,724 KB
testcase_04 AC 203 ms
91,608 KB
testcase_05 AC 201 ms
91,088 KB
testcase_06 AC 210 ms
90,936 KB
testcase_07 AC 234 ms
91,332 KB
testcase_08 AC 235 ms
91,012 KB
testcase_09 AC 230 ms
91,592 KB
testcase_10 AC 232 ms
91,344 KB
testcase_11 AC 161 ms
82,836 KB
testcase_12 AC 191 ms
88,076 KB
testcase_13 AC 109 ms
78,816 KB
testcase_14 AC 141 ms
81,716 KB
testcase_15 AC 206 ms
86,516 KB
testcase_16 AC 119 ms
82,252 KB
testcase_17 AC 115 ms
79,332 KB
testcase_18 AC 150 ms
85,184 KB
testcase_19 AC 199 ms
85,784 KB
testcase_20 AC 204 ms
86,584 KB
testcase_21 AC 203 ms
86,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N, M = map(int, input().split())
L = list(map(int, input().split()))
FBW = [list(map(int, input().split())) for _ in range(M)]

ans = 0
for f, b, w in FBW:
    a = bisect_left(L, f)
    tmp = b
    if a > 0:
        tmp = max(tmp, w - f + L[a - 1])
    if a < N:
        tmp = max(tmp, w - L[a] + f)
    ans += tmp
print(ans)
0