結果

問題 No.2408 Lakes and Fish
ユーザー miya145592miya145592
提出日時 2023-08-11 21:53:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 91,512 KB
最終ジャッジ日時 2024-11-18 16:01:56
合計ジャッジ時間 4,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,616 KB
testcase_01 AC 39 ms
52,424 KB
testcase_02 AC 38 ms
53,152 KB
testcase_03 AC 38 ms
53,756 KB
testcase_04 AC 204 ms
91,244 KB
testcase_05 AC 193 ms
90,996 KB
testcase_06 AC 203 ms
90,856 KB
testcase_07 AC 232 ms
91,448 KB
testcase_08 AC 233 ms
91,080 KB
testcase_09 AC 236 ms
91,076 KB
testcase_10 AC 236 ms
91,512 KB
testcase_11 AC 162 ms
83,100 KB
testcase_12 AC 191 ms
87,704 KB
testcase_13 AC 110 ms
79,288 KB
testcase_14 AC 141 ms
81,660 KB
testcase_15 AC 209 ms
86,688 KB
testcase_16 AC 118 ms
82,544 KB
testcase_17 AC 115 ms
79,392 KB
testcase_18 AC 149 ms
85,228 KB
testcase_19 AC 194 ms
85,756 KB
testcase_20 AC 205 ms
86,892 KB
testcase_21 AC 203 ms
86,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N, M = map(int, input().split())
L = list(map(int, input().split()))
FBW = [list(map(int, input().split())) for _ in range(M)]
ans = 0
for f, b, w in FBW:
    pos = bisect.bisect_left(L, f)
    if pos<N:
        if L[pos]==f:
            ans += w
        else:
            c = L[pos]-f
            if pos>0:
                c = min(c, f-L[pos-1])
            ans += max(b, w-c)
    else:
        c = f-L[pos-1]
        ans += max(b, w-c)
print(ans)
0