結果

問題 No.2408 Lakes and Fish
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-25 06:56:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 81,808 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-06-06 05:15:54
合計ジャッジ時間 4,977 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,296 KB
testcase_01 AC 43 ms
55,040 KB
testcase_02 AC 42 ms
55,552 KB
testcase_03 AC 42 ms
55,040 KB
testcase_04 AC 134 ms
90,752 KB
testcase_05 AC 132 ms
90,880 KB
testcase_06 AC 118 ms
90,112 KB
testcase_07 AC 156 ms
89,856 KB
testcase_08 AC 151 ms
90,248 KB
testcase_09 AC 155 ms
89,856 KB
testcase_10 AC 175 ms
92,800 KB
testcase_11 AC 109 ms
80,272 KB
testcase_12 AC 124 ms
87,920 KB
testcase_13 AC 85 ms
79,288 KB
testcase_14 AC 99 ms
80,408 KB
testcase_15 AC 136 ms
85,940 KB
testcase_16 AC 85 ms
83,200 KB
testcase_17 AC 81 ms
77,184 KB
testcase_18 AC 106 ms
84,352 KB
testcase_19 AC 132 ms
82,432 KB
testcase_20 AC 130 ms
80,068 KB
testcase_21 AC 138 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,M = map(int,input().split())
L = list(map(int,input().split()))
X = []
s = 0
for _ in range(M):
    f,b,w = map(int,input().split())
    s += b
    is_ok = lambda x: L[x]<=f
    if is_ok(N-1):
        x = N-1
        X.append(w-b-abs(L[x]-f))
        continue
    if not is_ok(0):
        X.append(w-b-abs(L[0]-f))
        continue
    y = N-1
    x = 0
    while y-x>1:
        mid = (y+x)//2
        if is_ok(mid):
            x = mid
        else:
            y = mid

    X.append(w-b-min(abs(L[x]-f),abs(L[y]-f)))
X.sort(reverse=True)
for x in X:
    if x<=0:
        break
    s += x
print(s)
0