結果

問題 No.2408 Lakes and Fish
ユーザー かとぅー ☆かとぅー ☆
提出日時 2023-09-04 21:59:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 107,004 KB
最終ジャッジ日時 2024-06-22 19:26:52
合計ジャッジ時間 5,372 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,272 KB
testcase_01 AC 42 ms
54,016 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 226 ms
106,440 KB
testcase_05 AC 223 ms
106,240 KB
testcase_06 AC 170 ms
105,600 KB
testcase_07 AC 261 ms
106,752 KB
testcase_08 AC 257 ms
106,768 KB
testcase_09 AC 256 ms
106,880 KB
testcase_10 AC 257 ms
107,004 KB
testcase_11 AC 166 ms
84,156 KB
testcase_12 AC 207 ms
100,060 KB
testcase_13 AC 121 ms
82,392 KB
testcase_14 AC 150 ms
84,224 KB
testcase_15 AC 215 ms
97,024 KB
testcase_16 AC 138 ms
90,148 KB
testcase_17 AC 128 ms
79,364 KB
testcase_18 AC 176 ms
94,580 KB
testcase_19 AC 207 ms
90,152 KB
testcase_20 AC 194 ms
77,568 KB
testcase_21 AC 210 ms
94,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
from collections import defaultdict

N, M = map(int, input().split())
L = list(map(int, input().split())) 
L.sort()
mi = L[0]
ma = L[-1]
d = defaultdict(int) 
for i in range(N):
    d[L[i]] += 1
ans = 0 
for i in range(M):
    f, b, w = map(int, input().split())  
    if f in d:
        ans += w     
    else:
        if f > ma:
            ans += max(w-abs(f-ma), b)
        elif mi > f:
            ans += max(w-abs(f-mi), b)
        else:
            e = bisect_left(L, f)          
            ans += max(w-abs(L[e]-f), w-abs(L[e-1]-f), b)

print(ans)
0