結果

問題 No.1435 Mmm......
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-10-01 11:42:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 1,560 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 136,792 KB
最終ジャッジ日時 2024-07-18 18:16:05
合計ジャッジ時間 11,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 34 ms
52,608 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 34 ms
52,480 KB
testcase_06 AC 394 ms
94,976 KB
testcase_07 AC 477 ms
98,176 KB
testcase_08 AC 427 ms
104,064 KB
testcase_09 AC 443 ms
100,736 KB
testcase_10 AC 418 ms
98,048 KB
testcase_11 AC 372 ms
97,536 KB
testcase_12 AC 418 ms
95,104 KB
testcase_13 AC 354 ms
95,232 KB
testcase_14 AC 332 ms
88,960 KB
testcase_15 AC 414 ms
104,192 KB
testcase_16 AC 408 ms
97,792 KB
testcase_17 AC 331 ms
90,752 KB
testcase_18 AC 424 ms
104,320 KB
testcase_19 AC 509 ms
95,232 KB
testcase_20 AC 488 ms
101,120 KB
testcase_21 AC 174 ms
136,792 KB
testcase_22 AC 174 ms
117,272 KB
testcase_23 AC 392 ms
102,016 KB
testcase_24 AC 442 ms
102,144 KB
testcase_25 AC 422 ms
101,888 KB
testcase_26 AC 577 ms
102,016 KB
testcase_27 AC 446 ms
101,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SlidingWindowAggretgation:
	def __init__(self, op) -> None:
		self.op = op
		self.front_stack = []
		self.back_stack = []

	def __len__(self) -> int:
		return len(self.front_stack) + len(self.back_stack)

	def __bool__(self) -> bool:
		return len(self) > 0

	def __str__(self) -> str:
		data = [x for x, _ in self.front_stack][::-1] + [x for x, _ in self.back_stack]
		return str(data)

	def append(self, x) -> None:
		fx = x
		if self.back_stack:
			fx = self.op(self.back_stack[-1][1], x)
		self.back_stack.append((x, fx))

	def popleft(self) -> None:
		if not self.front_stack:
			x = fx = self.back_stack.pop()[0]
			self.front_stack.append((x, fx))
			while self.back_stack:
				x = self.back_stack.pop()[0]
				fx = self.op(x, fx)
				self.front_stack.append((x, fx))
		self.front_stack.pop()

	def all_prod(self):
		res = None
		if self.front_stack:
			res = self.front_stack[-1][1]
		if self.back_stack:
			if res is None:
				res = self.back_stack[-1][1]
			else:
					res = self.op(res, self.back_stack[-1][1])
		return res


def op(a, b):
	m11, m12, M1 = a
	m21, m22, M2 = b
	if m11 < m21:
		n1 = m11
		n2 = min(m21, m12)
	else:
		n1 = m21
		n2 = min(m11, m22)
	return (n1, n2, max(M1, M2))

n = int(input())
a = list(map(int, input().split()))
INF = 10 ** 18
ans = 0
SWAG = SlidingWindowAggretgation(op)
ans = 0
r = 0
def ok(r):
	m1, m2, M = SWAG.all_prod()
	return max(M, a[r]) <= m1 + min(m2, a[r])
for l in range(n):
	while l == r or (r < n and ok(r)):
		SWAG.append((a[r], INF, a[r]))
		r += 1
	ans += r - l - 1
	SWAG.popleft()
print(ans)
0