結果

問題 No.1378 Flattening
ユーザー mkawa2mkawa2
提出日時 2022-06-28 08:53:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,833 bytes
コンパイル時間 516 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 82,424 KB
最終ジャッジ日時 2023-08-13 06:08:06
合計ジャッジ時間 8,687 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,604 KB
testcase_01 AC 73 ms
71,204 KB
testcase_02 AC 73 ms
71,244 KB
testcase_03 AC 73 ms
71,604 KB
testcase_04 AC 72 ms
71,244 KB
testcase_05 AC 72 ms
71,352 KB
testcase_06 AC 70 ms
71,336 KB
testcase_07 AC 72 ms
71,352 KB
testcase_08 AC 71 ms
71,244 KB
testcase_09 AC 71 ms
71,600 KB
testcase_10 AC 71 ms
71,352 KB
testcase_11 AC 70 ms
71,536 KB
testcase_12 AC 71 ms
71,448 KB
testcase_13 AC 71 ms
71,172 KB
testcase_14 AC 72 ms
71,588 KB
testcase_15 AC 70 ms
71,512 KB
testcase_16 AC 71 ms
71,348 KB
testcase_17 AC 72 ms
71,544 KB
testcase_18 AC 74 ms
71,472 KB
testcase_19 AC 72 ms
71,444 KB
testcase_20 AC 71 ms
71,380 KB
testcase_21 AC 71 ms
71,660 KB
testcase_22 AC 72 ms
71,588 KB
testcase_23 AC 70 ms
71,368 KB
testcase_24 AC 71 ms
71,264 KB
testcase_25 AC 72 ms
71,228 KB
testcase_26 AC 72 ms
71,452 KB
testcase_27 AC 73 ms
71,208 KB
testcase_28 AC 72 ms
71,324 KB
testcase_29 AC 72 ms
71,512 KB
testcase_30 AC 70 ms
71,328 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

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