結果

問題 No.2408 Lakes and Fish
ユーザー titiatitia
提出日時 2023-08-11 21:29:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 677 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,848 KB
最終ジャッジ日時 2024-11-18 15:26:56
合計ジャッジ時間 10,297 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 614 ms
21,664 KB
testcase_05 AC 628 ms
21,528 KB
testcase_06 AC 599 ms
20,676 KB
testcase_07 AC 668 ms
21,848 KB
testcase_08 AC 676 ms
21,832 KB
testcase_09 AC 668 ms
21,836 KB
testcase_10 AC 677 ms
21,840 KB
testcase_11 AC 381 ms
14,472 KB
testcase_12 AC 473 ms
19,548 KB
testcase_13 AC 139 ms
13,504 KB
testcase_14 AC 298 ms
14,472 KB
testcase_15 AC 561 ms
18,272 KB
testcase_16 AC 172 ms
16,300 KB
testcase_17 AC 172 ms
12,544 KB
testcase_18 AC 310 ms
17,820 KB
testcase_19 AC 548 ms
16,476 KB
testcase_20 AC 593 ms
11,008 KB
testcase_21 AC 555 ms
17,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from bisect import bisect

N,M=map(int,input().split())

L=list(map(int,input().split()))

ANS=0

for i in range(M):
    x,y,z=map(int,input().split())

    PLUS=y

    k=bisect(L,x)

    for j in range(max(0,k-2),min(len(L),k+2)):
        PLUS=max(PLUS,z-abs(x-L[j]))

    ANS+=PLUS
print(ANS)
0