結果

問題 No.2408 Lakes and Fish
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-25 06:56:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 81,408 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-12-23 16:55:23
合計ジャッジ時間 5,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,296 KB
testcase_01 AC 42 ms
55,296 KB
testcase_02 AC 41 ms
55,680 KB
testcase_03 AC 41 ms
55,296 KB
testcase_04 AC 133 ms
90,912 KB
testcase_05 AC 134 ms
90,112 KB
testcase_06 AC 116 ms
89,856 KB
testcase_07 AC 157 ms
90,152 KB
testcase_08 AC 157 ms
89,344 KB
testcase_09 AC 156 ms
90,260 KB
testcase_10 AC 178 ms
92,928 KB
testcase_11 AC 111 ms
80,128 KB
testcase_12 AC 135 ms
87,808 KB
testcase_13 AC 86 ms
78,848 KB
testcase_14 AC 99 ms
80,640 KB
testcase_15 AC 140 ms
85,888 KB
testcase_16 AC 88 ms
83,108 KB
testcase_17 AC 80 ms
77,056 KB
testcase_18 AC 114 ms
84,352 KB
testcase_19 AC 141 ms
82,688 KB
testcase_20 AC 133 ms
79,892 KB
testcase_21 AC 141 ms
84,096 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