結果

問題 No.2408 Lakes and Fish
ユーザー やでな@競プロやでな@競プロ
提出日時 2023-10-08 18:01:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 90,244 KB
最終ジャッジ日時 2024-07-26 18:10:30
合計ジャッジ時間 5,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,444 KB
testcase_01 AC 37 ms
53,364 KB
testcase_02 AC 36 ms
52,892 KB
testcase_03 AC 37 ms
53,220 KB
testcase_04 AC 168 ms
89,968 KB
testcase_05 AC 168 ms
89,860 KB
testcase_06 AC 171 ms
89,544 KB
testcase_07 AC 195 ms
90,228 KB
testcase_08 AC 199 ms
90,244 KB
testcase_09 AC 195 ms
89,996 KB
testcase_10 AC 196 ms
90,064 KB
testcase_11 AC 142 ms
80,312 KB
testcase_12 AC 162 ms
87,000 KB
testcase_13 AC 103 ms
79,000 KB
testcase_14 AC 127 ms
80,344 KB
testcase_15 AC 175 ms
85,620 KB
testcase_16 AC 111 ms
82,780 KB
testcase_17 AC 107 ms
77,908 KB
testcase_18 AC 136 ms
83,952 KB
testcase_19 AC 169 ms
82,620 KB
testcase_20 AC 169 ms
76,440 KB
testcase_21 AC 176 ms
84,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
l = list(map(int,input().split()))

from bisect import *

ans = 0

for i in range(m):
    f,b,w = map(int,input().split())
    ind = bisect_left(l,f)
    if ind == 0:
        if l[ind] == f:
            ans += w
        else:
            ans += max(b,w-(l[0]-f))
    elif ind == n:
        if l[n-1] == f:
            ans += w
        else:
            ans += max(b,w-(f-l[n-1]))
    else:
        if l[ind] == f:
            ans += w
        else:
            tmp1 = w-(f-l[ind-1])
            tmp2 = w-(l[ind]-f)
            ans += max(b,tmp1,tmp2)
            
print(ans)
0