結果

問題 No.1827 最長部分スーパーリッチ門松列列
ユーザー titiatitia
提出日時 2022-01-30 00:01:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,309 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 61,532 KB
最終ジャッジ日時 2024-06-10 23:14:58
合計ジャッジ時間 22,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 93 ms
11,008 KB
testcase_04 AC 407 ms
11,136 KB
testcase_05 AC 399 ms
11,136 KB
testcase_06 AC 399 ms
11,008 KB
testcase_07 AC 981 ms
61,532 KB
testcase_08 AC 982 ms
61,276 KB
testcase_09 AC 1,002 ms
61,272 KB
testcase_10 AC 999 ms
61,276 KB
testcase_11 AC 962 ms
61,216 KB
testcase_12 AC 971 ms
61,276 KB
testcase_13 AC 972 ms
61,272 KB
testcase_14 AC 985 ms
61,284 KB
testcase_15 AC 990 ms
61,408 KB
testcase_16 AC 986 ms
61,272 KB
testcase_17 AC 1,173 ms
61,212 KB
testcase_18 AC 1,309 ms
61,280 KB
testcase_19 AC 1,015 ms
61,208 KB
testcase_20 AC 982 ms
61,380 KB
testcase_21 AC 1,028 ms
61,408 KB
testcase_22 AC 1,026 ms
61,408 KB
testcase_23 AC 1,031 ms
61,392 KB
testcase_24 AC 1,007 ms
61,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from operator import itemgetter

T=int(input())

for tests in range(T):
    N=int(input())
    P=list(map(int,input().split()))

    P_INV=[-1]*N

    for i in range(N):
        P_INV[P[i]-1]=i

    ANS=1
    A=[1]*N
    LANS=1

    for i in range(N):
        x=P_INV[i]

        now=0
        if x>0 and A[x-1]!=A[x]:
            now+=1
        if x<N-1 and A[x+1]!=A[x]:
            now+=1

        A[x]=0
        now2=0

        if x>0 and A[x-1]!=A[x]:
            now2+=1
        if x<N-1 and A[x+1]!=A[x]:
            now2+=1

        ANS+=now2-now
        LANS=max(LANS,ANS)

    print(LANS)

        

    
0