結果

問題 No.1435 Mmm......
ユーザー shotoyooshotoyoo
提出日時 2021-03-20 00:10:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,356 ms / 2,000 ms
コード長 2,204 bytes
コンパイル時間 1,015 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 112,584 KB
最終ジャッジ日時 2024-11-19 03:15:31
合計ジャッジ時間 24,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,864 KB
testcase_01 AC 35 ms
52,864 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 36 ms
53,504 KB
testcase_04 AC 36 ms
52,736 KB
testcase_05 AC 36 ms
52,608 KB
testcase_06 AC 762 ms
96,980 KB
testcase_07 AC 1,001 ms
98,436 KB
testcase_08 AC 1,262 ms
104,760 KB
testcase_09 AC 995 ms
101,248 KB
testcase_10 AC 967 ms
98,404 KB
testcase_11 AC 907 ms
98,172 KB
testcase_12 AC 1,145 ms
97,792 KB
testcase_13 AC 787 ms
96,384 KB
testcase_14 AC 711 ms
90,752 KB
testcase_15 AC 1,344 ms
104,704 KB
testcase_16 AC 979 ms
98,468 KB
testcase_17 AC 760 ms
92,544 KB
testcase_18 AC 1,161 ms
104,832 KB
testcase_19 AC 802 ms
96,968 KB
testcase_20 AC 1,057 ms
101,120 KB
testcase_21 AC 316 ms
112,584 KB
testcase_22 AC 448 ms
106,636 KB
testcase_23 AC 968 ms
101,724 KB
testcase_24 AC 1,356 ms
101,784 KB
testcase_25 AC 1,140 ms
101,760 KB
testcase_26 AC 1,307 ms
101,548 KB
testcase_27 AC 1,342 ms
102,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")

# 二分探索木の代わり BST HST
# 存在しない要素に対するremoveはこないことを仮定している
"""↓より少し遅い(?)が、同一要素を複数入れた場合に数を保持するd
"""
from heapq import heappop as hpp, heappush as hp
# 二分探索木の代わり BST HST
# 存在しない要素に対するremoveはこないことを仮定している
"""↓より少し遅い(?)が、同一要素を複数入れた場合に数を保持するd
"""
from heapq import heappop as hpp, heappush as hp
class HST:
    def __init__(self, s=1):
        self._h = []
        self._q = []
        self._s = s
    def push(self, v):
        hp(self._h, self._s*v)
    def remove(self, v):
        hp(self._q, self._s*v)
    def top(self):
        while self._q and self._q[0]==self._h[0]:
            hpp(self._q)
            hpp(self._h)
        if not self._h:
            res = None
        else:
            res = self._s*self._h[0]            
        return res
    def second(self):
        v = self.top()
        if v is None:
            return None
        self.remove(v)
        v2 = self.top()
        if v2 is not None:
            v2 *= self._s
        self.push(v)
        return v2

n = int(input())
a = list(map(int, input().split()))
from heapq import heappop as hpp, heappush as hp
h = HST()
H = HST()
j = 0
ans = 0
ans0 = 0
for i in range(n):
    mi = 0
    while j<n:
        if j-i>=3:
            m0 = h.top()
            m1 = h.second()
            M = H.top()
            if m0+m1>=-M:
                pass
            else:
                break
        h.push(a[j])
        H.push(-a[j])
        j += 1
    m0 = h.top()
    m1 = h.second()
    M = H.top()
    if m1 is not None and m0+m1<-M:
        ans += (j-i-2)
    else:
        ans += (j-i-1)
    h.remove(a[i])
    H.remove(-a[i])
#     l = sorted(a[i:j])
#     if l[0]+l[1]<l[-1]:
#         ans0 += (j-i-2)
#     else:
#         ans0 += (j-i-1)
#     if ans!=ans0:
#         print(m0,m1,-M)
#         assert 0
print(ans)
0