結果

問題 No.2408 Lakes and Fish
ユーザー グミグミ
提出日時 2023-08-11 21:47:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 90,448 KB
最終ジャッジ日時 2024-11-18 15:49:15
合計ジャッジ時間 4,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 44 ms
52,352 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 168 ms
90,240 KB
testcase_05 AC 165 ms
89,784 KB
testcase_06 AC 176 ms
89,628 KB
testcase_07 AC 192 ms
90,440 KB
testcase_08 AC 195 ms
90,448 KB
testcase_09 AC 198 ms
90,004 KB
testcase_10 AC 191 ms
90,420 KB
testcase_11 AC 143 ms
80,188 KB
testcase_12 AC 161 ms
86,836 KB
testcase_13 AC 104 ms
78,876 KB
testcase_14 AC 130 ms
80,616 KB
testcase_15 AC 171 ms
85,376 KB
testcase_16 AC 113 ms
81,884 KB
testcase_17 AC 103 ms
77,524 KB
testcase_18 AC 133 ms
84,212 KB
testcase_19 AC 168 ms
82,008 KB
testcase_20 AC 166 ms
76,800 KB
testcase_21 AC 164 ms
84,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
def main():
	n,m=map(int,input().split())
	ls=list(map(int,input().split()))
	ans = 0
	for i in range(m):
		f,b,w=map(int,input().split())

		idx = bisect.bisect(ls,f)
		
		cost = 10**10
		if idx < n:
			cost1 = abs(f-ls[idx])
			if cost1 < cost:
				cost = cost1
		if 0 <= idx-1:
			cost2 = abs(f-ls[idx-1])
			if cost2 < cost:
				cost = cost2
		if cost < w-b:
			ans += w - cost
		else:
			ans += b
	print(ans)

if __name__ == "__main__":
	main()
0