結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー vwxyzvwxyz
提出日時 2023-03-23 01:20:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 3,500 ms
コード長 1,269 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 113,180 KB
最終ジャッジ日時 2024-09-18 15:10:13
合計ジャッジ時間 12,809 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,608 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 33 ms
52,608 KB
testcase_03 AC 110 ms
77,836 KB
testcase_04 AC 110 ms
78,468 KB
testcase_05 AC 102 ms
77,332 KB
testcase_06 AC 103 ms
77,752 KB
testcase_07 AC 105 ms
77,604 KB
testcase_08 AC 104 ms
77,740 KB
testcase_09 AC 109 ms
77,632 KB
testcase_10 AC 118 ms
77,276 KB
testcase_11 AC 213 ms
97,904 KB
testcase_12 AC 200 ms
97,580 KB
testcase_13 AC 211 ms
102,816 KB
testcase_14 AC 203 ms
100,232 KB
testcase_15 AC 224 ms
100,980 KB
testcase_16 AC 200 ms
99,716 KB
testcase_17 AC 201 ms
103,072 KB
testcase_18 AC 209 ms
100,192 KB
testcase_19 AC 218 ms
101,292 KB
testcase_20 AC 215 ms
102,408 KB
testcase_21 AC 224 ms
100,272 KB
testcase_22 AC 195 ms
97,824 KB
testcase_23 AC 197 ms
100,272 KB
testcase_24 AC 208 ms
100,888 KB
testcase_25 AC 223 ms
102,460 KB
testcase_26 AC 255 ms
102,780 KB
testcase_27 AC 204 ms
100,560 KB
testcase_28 AC 210 ms
102,312 KB
testcase_29 AC 203 ms
102,520 KB
testcase_30 AC 211 ms
102,388 KB
testcase_31 AC 222 ms
102,804 KB
testcase_32 AC 206 ms
102,776 KB
testcase_33 AC 213 ms
102,384 KB
testcase_34 AC 147 ms
112,332 KB
testcase_35 AC 193 ms
108,448 KB
testcase_36 AC 182 ms
110,884 KB
testcase_37 AC 190 ms
110,152 KB
testcase_38 AC 274 ms
109,452 KB
testcase_39 AC 225 ms
105,852 KB
testcase_40 AC 258 ms
106,412 KB
testcase_41 AC 203 ms
109,208 KB
testcase_42 AC 203 ms
109,200 KB
testcase_43 AC 222 ms
106,916 KB
testcase_44 AC 255 ms
106,576 KB
testcase_45 AC 205 ms
106,020 KB
testcase_46 AC 203 ms
110,440 KB
testcase_47 AC 199 ms
107,764 KB
testcase_48 AC 188 ms
111,584 KB
testcase_49 AC 202 ms
108,172 KB
testcase_50 AC 206 ms
109,836 KB
testcase_51 AC 194 ms
113,064 KB
testcase_52 AC 204 ms
113,032 KB
testcase_53 AC 198 ms
113,180 KB
testcase_54 AC 35 ms
52,480 KB
testcase_55 AC 36 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
import bisect

def Cartesian_Tree(lst,maximum=False):
    N=len(lst)
    parents=[None]*N
    stack=[]
    for i in range(N):
        prev=None
        if maximum:
            while stack and lst[stack[-1]]<lst[i]:
                prev=stack.pop()
        else:
            while stack and lst[stack[-1]]>lst[i]:
                prev=stack.pop()
        if prev!=None:
            parents[prev]=i
        if stack:
            parents[i]=stack[-1]
        stack.append(i)
    graph=[[] for x in range(N)]
    for x in range(N):
        if parents[x]!=None:
            graph[parents[x]].append(x)
        else:
            root=x
    return graph,root

N=int(readline())
P=list(map(int,readline().split()))
ans=0
for P in (P,P[::-1]):
    graph,root=Cartesian_Tree(P,maximum=True)
    query=[None]*N
    stack=[(0,root,N)]
    while stack:
        l,rt,r=stack.pop()
        query[rt]=l
        for x in graph[rt]:
            if x<rt:
                stack.append((l,x,rt))
            else:
                stack.append((rt+1,x,r))
    stack=[]
    for i in range(N):
        while stack and P[stack[-1]]>P[i]:
            stack.pop()
        ans+=len(stack)-bisect.bisect_left(stack,query[i])
        stack.append(i)
print(ans)
0