結果

問題 No.2408 Lakes and Fish
ユーザー detteiuudetteiuu
提出日時 2024-12-22 05:11:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 91,520 KB
最終ジャッジ日時 2024-12-22 05:11:54
合計ジャッジ時間 5,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 42 ms
52,324 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 211 ms
91,232 KB
testcase_05 AC 214 ms
91,444 KB
testcase_06 AC 220 ms
91,136 KB
testcase_07 AC 248 ms
91,384 KB
testcase_08 AC 260 ms
91,264 KB
testcase_09 AC 249 ms
91,520 KB
testcase_10 AC 249 ms
91,520 KB
testcase_11 AC 171 ms
83,200 KB
testcase_12 AC 201 ms
87,936 KB
testcase_13 AC 117 ms
78,756 KB
testcase_14 AC 172 ms
81,792 KB
testcase_15 AC 215 ms
86,804 KB
testcase_16 AC 127 ms
82,688 KB
testcase_17 AC 124 ms
79,488 KB
testcase_18 AC 161 ms
85,504 KB
testcase_19 AC 212 ms
85,908 KB
testcase_20 AC 247 ms
87,132 KB
testcase_21 AC 214 ms
87,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

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:
    b = bisect_left(L, F)
    if b < N and L[b] == F:
        ans += W
        continue
    MAX = B
    if 1 <= b:
        MAX = max(MAX, W-(F-L[b-1]))
    if b < N:
        MAX = max(MAX, W-(L[b]-F))
    ans += MAX

print(ans)
0