結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー vwxyzvwxyz
提出日時 2023-03-23 01:20:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 586 ms / 3,500 ms
コード長 1,269 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 51,388 KB
最終ジャッジ日時 2024-09-18 15:10:59
合計ジャッジ時間 26,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 53 ms
12,160 KB
testcase_04 AC 53 ms
12,032 KB
testcase_05 AC 52 ms
12,160 KB
testcase_06 AC 53 ms
12,160 KB
testcase_07 AC 53 ms
12,032 KB
testcase_08 AC 53 ms
11,904 KB
testcase_09 AC 51 ms
12,160 KB
testcase_10 AC 53 ms
12,032 KB
testcase_11 AC 472 ms
38,888 KB
testcase_12 AC 465 ms
38,996 KB
testcase_13 AC 572 ms
44,888 KB
testcase_14 AC 483 ms
39,952 KB
testcase_15 AC 539 ms
43,092 KB
testcase_16 AC 464 ms
38,408 KB
testcase_17 AC 553 ms
43,012 KB
testcase_18 AC 533 ms
41,816 KB
testcase_19 AC 550 ms
43,620 KB
testcase_20 AC 577 ms
45,128 KB
testcase_21 AC 537 ms
41,968 KB
testcase_22 AC 458 ms
38,404 KB
testcase_23 AC 475 ms
39,384 KB
testcase_24 AC 557 ms
43,528 KB
testcase_25 AC 572 ms
44,680 KB
testcase_26 AC 540 ms
42,328 KB
testcase_27 AC 490 ms
40,116 KB
testcase_28 AC 586 ms
45,180 KB
testcase_29 AC 576 ms
45,176 KB
testcase_30 AC 573 ms
45,324 KB
testcase_31 AC 580 ms
45,196 KB
testcase_32 AC 585 ms
45,192 KB
testcase_33 AC 577 ms
45,064 KB
testcase_34 AC 510 ms
51,388 KB
testcase_35 AC 557 ms
46,988 KB
testcase_36 AC 539 ms
47,676 KB
testcase_37 AC 553 ms
46,864 KB
testcase_38 AC 554 ms
48,660 KB
testcase_39 AC 529 ms
46,656 KB
testcase_40 AC 542 ms
47,944 KB
testcase_41 AC 548 ms
47,744 KB
testcase_42 AC 535 ms
48,588 KB
testcase_43 AC 544 ms
47,632 KB
testcase_44 AC 538 ms
47,428 KB
testcase_45 AC 525 ms
46,416 KB
testcase_46 AC 555 ms
46,896 KB
testcase_47 AC 556 ms
47,724 KB
testcase_48 AC 542 ms
48,864 KB
testcase_49 AC 562 ms
47,976 KB
testcase_50 AC 549 ms
47,580 KB
testcase_51 AC 561 ms
48,908 KB
testcase_52 AC 567 ms
49,164 KB
testcase_53 AC 572 ms
48,904 KB
testcase_54 AC 31 ms
10,624 KB
testcase_55 AC 32 ms
10,624 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