結果

問題 No.1378 Flattening
ユーザー titiatitia
提出日時 2022-08-15 01:20:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,654 ms / 2,000 ms
コード長 1,337 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 408,832 KB
最終ジャッジ日時 2024-10-01 15:39:27
合計ジャッジ時間 19,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 36 ms
51,968 KB
testcase_12 AC 35 ms
52,096 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 37 ms
51,968 KB
testcase_17 AC 37 ms
52,480 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 36 ms
51,968 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 37 ms
52,224 KB
testcase_24 AC 36 ms
51,968 KB
testcase_25 AC 36 ms
52,224 KB
testcase_26 AC 36 ms
52,096 KB
testcase_27 AC 36 ms
52,096 KB
testcase_28 AC 37 ms
51,840 KB
testcase_29 AC 38 ms
51,968 KB
testcase_30 AC 37 ms
52,224 KB
testcase_31 AC 1,644 ms
408,832 KB
testcase_32 AC 1,654 ms
393,600 KB
testcase_33 AC 1,226 ms
338,304 KB
testcase_34 AC 1,128 ms
337,920 KB
testcase_35 AC 1,646 ms
408,064 KB
testcase_36 AC 1,210 ms
348,288 KB
testcase_37 AC 738 ms
276,736 KB
testcase_38 AC 741 ms
276,352 KB
testcase_39 AC 747 ms
276,352 KB
testcase_40 AC 726 ms
277,052 KB
testcase_41 AC 746 ms
276,688 KB
testcase_42 AC 742 ms
277,248 KB
testcase_43 AC 738 ms
277,376 KB
testcase_44 AC 751 ms
276,224 KB
testcase_45 AC 136 ms
91,648 KB
testcase_46 AC 173 ms
101,888 KB
testcase_47 AC 77 ms
78,848 KB
testcase_48 AC 577 ms
229,744 KB
testcase_49 AC 639 ms
250,136 KB
testcase_50 AC 123 ms
89,088 KB
testcase_51 AC 44 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://atcoder.jp/contests/agc058/tasks/agc058_b
# で出題されたのでこちらでも通しておきます。

import sys
input = sys.stdin.readline

n=int(input())
A=list(map(int,input().split()))

A=[n+1-a for a in A]

mod=998244353

IND=[-1]*(n+1)

for i in range(n):
    IND[A[i]]=i

LEFT=[[] for i in range(n)]
RIGHT=[[] for i in range(n)]

for i in range(1,n+1):
    x=IND[i]

    RIGHT[x].append(i)

    for j in range(x-1,-1,-1):
        if A[j]<i:
            RIGHT[j].append(i)
        else:
            break

    for j in range(x+1,n):
        if A[j]<i:
            LEFT[j].append(i)
        else:
            break
        
DP=[[0]*(n+1) for i in range(n)]

for x in RIGHT[0]:
    DP[0][x]=1


for i in range(1,n):
    DPR=[0]*(n+1)
    DPL=[0]*(n+1)
    
    for j in range(1,n+1):
        if DP[i-1][j]==0:
            continue
        plus=DP[i-1][j]

        # left
        if IND[j]<i:
            DPL[j]+=plus
            DPR[0]+=plus
        else:
            DPR[j]+=plus

    #print(DPL,DPR)

    for j in range(n-1,-1,-1):
        DPL[j]=(DPL[j]+DPL[j+1])%mod

    for j in range(1,n+1):
        DPR[j]=(DPR[j]+DPR[j-1])%mod

    #print(DPL,DPR)

    for right in RIGHT[i]:
        DP[i][right]=DPR[right]

    for left in LEFT[i]:
        DP[i][left]=DPL[left]

print(sum(DP[-1])%mod)          
        
0