結果

問題 No.2408 Lakes and Fish
ユーザー hiryuNhiryuN
提出日時 2023-08-11 21:35:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 93,804 KB
最終ジャッジ日時 2024-11-18 15:33:33
合計ジャッジ時間 6,693 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,696 KB
testcase_01 AC 40 ms
52,816 KB
testcase_02 AC 42 ms
52,440 KB
testcase_03 AC 38 ms
54,040 KB
testcase_04 AC 359 ms
93,404 KB
testcase_05 AC 362 ms
93,248 KB
testcase_06 AC 327 ms
92,524 KB
testcase_07 AC 362 ms
93,476 KB
testcase_08 AC 356 ms
93,448 KB
testcase_09 AC 366 ms
93,592 KB
testcase_10 AC 370 ms
93,804 KB
testcase_11 AC 235 ms
81,036 KB
testcase_12 AC 274 ms
89,456 KB
testcase_13 AC 126 ms
79,484 KB
testcase_14 AC 194 ms
81,152 KB
testcase_15 AC 312 ms
87,548 KB
testcase_16 AC 140 ms
83,636 KB
testcase_17 AC 140 ms
77,676 KB
testcase_18 AC 199 ms
86,260 KB
testcase_19 AC 308 ms
83,896 KB
testcase_20 AC 343 ms
76,780 KB
testcase_21 AC 312 ms
85,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
L=list(map(int,input().split()))
L=[-10**10]+L+[10**10]
ans=0
for i in range(m):
	x,a,b=map(int,input().split())
	co=0
	for j in reversed(range(60)):
		co+=2**j
		if co>=n+2:
			co-=2**j
		else:
			if L[co]>x:
				co-=2**j
	ans+=max(a,b-abs(x-L[co]),b-abs(x-L[co+1]))
print(ans)
0