結果

問題 No.1378 Flattening
ユーザー mkawa2mkawa2
提出日時 2022-06-28 08:53:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,833 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 130,316 KB
最終ジャッジ日時 2024-11-20 22:54:09
合計ジャッジ時間 20,904 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
61,212 KB
testcase_01 AC 41 ms
60,980 KB
testcase_02 AC 39 ms
58,756 KB
testcase_03 AC 39 ms
130,316 KB
testcase_04 AC 38 ms
59,524 KB
testcase_05 AC 39 ms
52,624 KB
testcase_06 AC 40 ms
53,484 KB
testcase_07 AC 39 ms
53,012 KB
testcase_08 AC 40 ms
52,856 KB
testcase_09 AC 39 ms
53,284 KB
testcase_10 AC 41 ms
52,824 KB
testcase_11 AC 40 ms
53,544 KB
testcase_12 AC 41 ms
53,428 KB
testcase_13 AC 40 ms
52,456 KB
testcase_14 AC 40 ms
53,068 KB
testcase_15 AC 40 ms
54,236 KB
testcase_16 AC 38 ms
52,576 KB
testcase_17 AC 40 ms
52,776 KB
testcase_18 AC 39 ms
52,992 KB
testcase_19 AC 40 ms
54,728 KB
testcase_20 AC 40 ms
53,820 KB
testcase_21 AC 41 ms
53,972 KB
testcase_22 AC 40 ms
53,624 KB
testcase_23 AC 40 ms
53,700 KB
testcase_24 AC 40 ms
53,616 KB
testcase_25 AC 38 ms
53,052 KB
testcase_26 AC 38 ms
53,504 KB
testcase_27 AC 38 ms
53,752 KB
testcase_28 AC 40 ms
52,520 KB
testcase_29 AC 39 ms
53,176 KB
testcase_30 AC 40 ms
53,772 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 127 ms
76,676 KB
testcase_38 AC 131 ms
76,832 KB
testcase_39 AC 136 ms
77,408 KB
testcase_40 AC 127 ms
76,864 KB
testcase_41 AC 134 ms
76,700 KB
testcase_42 AC 133 ms
77,004 KB
testcase_43 AC 133 ms
76,900 KB
testcase_44 AC 136 ms
76,636 KB
testcase_45 AC 102 ms
76,768 KB
testcase_46 AC 104 ms
76,672 KB
testcase_47 AC 85 ms
75,776 KB
testcase_48 AC 124 ms
77,160 KB
testcase_49 AC 131 ms
76,508 KB
testcase_50 AC 100 ms
76,928 KB
testcase_51 AC 48 ms
64,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

class BitSum:
    def __init__(self, n):
        self.n = n+1
        self.table = [0]*self.n

    def add(self, i, x):
        i += 1
        while i < self.n:
            self.table[i] += x
            self.table[i] %= md
            i += i & -i

    def sum(self, i):
        i += 1
        res = 0
        while i > 0:
            res += self.table[i]
            res %= md
            i -= i & -i
        return res

    def sumlr(self, l, r):
        if l >= r: return 0
        if l == 0: return self.sum(r-1)
        return (self.sum(r-1)-self.sum(l-1))%md

n = II()
aa = LI()

ll = [0]*n
rr = [0]*n

st = [(-1, -1)]
for i, a in enumerate(aa):
    while st[-1][-1] > a: st.pop()
    ll[i] = st[-1][0]+1
    st.append((i, a))
# pDB(ll)

st = [(n, -1)]
for i in range(n)[::-1]:
    a = aa[i]
    while st[-1][-1] > a: st.pop()
    rr[i] = st[-1][0]
    st.append((i, a))
# pDB(rr)

dp = BitSum(n+1)
dp.add(0,1)

for i, a in enumerate(aa):
    l, r = ll[i], rr[i]
    sj = r
    if r == n: sj = i+1
    for j in range(r, l, -1):
        s = dp.sumlr(l, j)
        dp.add(j, s)

print(dp.sumlr(n, n+1))
0