結果

問題 No.2408 Lakes and Fish
ユーザー ニックネームニックネーム
提出日時 2023-08-11 21:31:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 623 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,956 KB
最終ジャッジ日時 2024-11-18 15:29:19
合計ジャッジ時間 9,753 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 580 ms
21,652 KB
testcase_05 AC 575 ms
21,776 KB
testcase_06 AC 566 ms
20,668 KB
testcase_07 AC 620 ms
21,820 KB
testcase_08 AC 623 ms
21,920 KB
testcase_09 AC 617 ms
21,956 KB
testcase_10 AC 608 ms
21,832 KB
testcase_11 AC 357 ms
14,464 KB
testcase_12 AC 436 ms
19,540 KB
testcase_13 AC 132 ms
13,628 KB
testcase_14 AC 269 ms
14,596 KB
testcase_15 AC 513 ms
18,264 KB
testcase_16 AC 156 ms
16,292 KB
testcase_17 AC 158 ms
12,544 KB
testcase_18 AC 275 ms
17,812 KB
testcase_19 AC 514 ms
16,344 KB
testcase_20 AC 566 ms
11,008 KB
testcase_21 AC 521 ms
17,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
n,m = map(int,input().split())
l = list(map(int,input().split()))
ans = 0
for _ in range(m):
    f,b,w = map(int,input().split())
    i = bisect_left(l,f)
    c = 0 if i<n and l[i]==f else 10**9
    if i>0: c = min(c,f-l[i-1])
    if i<n: c = min(c,l[i]-f)
    ans += max(b,w-c)
print(ans)
0