結果

問題 No.2408 Lakes and Fish
ユーザー FromBooskaFromBooska
提出日時 2023-08-12 04:40:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 95,232 KB
最終ジャッジ日時 2024-11-19 01:45:47
合計ジャッジ時間 7,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 194 ms
94,336 KB
testcase_05 AC 194 ms
94,720 KB
testcase_06 AC 215 ms
93,824 KB
testcase_07 AC 269 ms
94,976 KB
testcase_08 AC 301 ms
94,848 KB
testcase_09 AC 304 ms
95,004 KB
testcase_10 AC 300 ms
95,232 KB
testcase_11 AC 212 ms
81,792 KB
testcase_12 AC 246 ms
90,112 KB
testcase_13 AC 161 ms
80,512 KB
testcase_14 AC 192 ms
82,176 KB
testcase_15 AC 228 ms
88,576 KB
testcase_16 AC 168 ms
83,840 KB
testcase_17 AC 163 ms
79,096 KB
testcase_18 AC 170 ms
87,116 KB
testcase_19 AC 279 ms
84,092 KB
testcase_20 AC 235 ms
78,464 KB
testcase_21 AC 220 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 一番近い水までの距離を見て一匹ずつどうするか決めればいいか
# bisect 

N, M = map(int, input().split())
INF = 10**20
L = [-INF]+list(map(int, input().split()))+[INF]

from bisect import *
ans = 0
for i in range(M):
    f, b, w = map(int, input().split())
    lower = L[bisect_left(L, f)-1]
    higher = L[bisect_left(L, f)]
    d = min(higher-f, f-lower)
    if d == 0:
        calc = w
    else:
        calc = max(b, w-d)
    ans += calc
    #print(f, lower, higher, d, calc)
print(ans)


0