結果

問題 No.2408 Lakes and Fish
ユーザー timitimi
提出日時 2023-08-12 11:55:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-11-19 12:54:36
合計ジャッジ時間 5,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 207 ms
106,880 KB
testcase_05 AC 210 ms
106,368 KB
testcase_06 AC 152 ms
106,240 KB
testcase_07 AC 244 ms
106,496 KB
testcase_08 AC 247 ms
106,752 KB
testcase_09 AC 244 ms
107,008 KB
testcase_10 AC 244 ms
106,752 KB
testcase_11 AC 158 ms
84,864 KB
testcase_12 AC 192 ms
99,740 KB
testcase_13 AC 113 ms
82,816 KB
testcase_14 AC 145 ms
84,352 KB
testcase_15 AC 205 ms
96,840 KB
testcase_16 AC 130 ms
90,512 KB
testcase_17 AC 116 ms
78,720 KB
testcase_18 AC 158 ms
94,304 KB
testcase_19 AC 196 ms
89,984 KB
testcase_20 AC 174 ms
76,672 KB
testcase_21 AC 203 ms
94,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
L=list(map(int, input().split()))
A=L.copy()
A.append(-10**12)
A.append(10**12)
A=sorted(A)
LL=set(L)
import bisect
ans=0
for i in range(M):
  f,b,w=map(int, input().split())
  if f in LL:
    ans+=w 
  else:
    d=bisect.bisect_left(A,f)
    x,y=A[d-1],A[d]
    p=max(b,w-abs(f-x),w-abs(f-y))
    ans+=p
print(ans)
0