結果

問題 No.992 最長増加部分列の数え上げ
ユーザー mkawa2mkawa2
提出日時 2022-07-05 10:51:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 1,234 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 227,436 KB
最終ジャッジ日時 2024-05-09 04:33:08
合計ジャッジ時間 14,710 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,272 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 AC 46 ms
54,144 KB
testcase_03 AC 46 ms
54,144 KB
testcase_04 AC 195 ms
130,076 KB
testcase_05 AC 180 ms
116,160 KB
testcase_06 AC 221 ms
141,484 KB
testcase_07 AC 192 ms
123,796 KB
testcase_08 AC 138 ms
101,760 KB
testcase_09 AC 188 ms
125,724 KB
testcase_10 AC 219 ms
141,396 KB
testcase_11 AC 253 ms
157,924 KB
testcase_12 AC 124 ms
93,724 KB
testcase_13 AC 178 ms
121,884 KB
testcase_14 AC 176 ms
122,352 KB
testcase_15 AC 123 ms
94,080 KB
testcase_16 AC 357 ms
208,500 KB
testcase_17 AC 140 ms
102,144 KB
testcase_18 AC 178 ms
121,408 KB
testcase_19 AC 261 ms
157,232 KB
testcase_20 AC 369 ms
223,632 KB
testcase_21 AC 369 ms
223,588 KB
testcase_22 AC 372 ms
223,516 KB
testcase_23 AC 372 ms
223,632 KB
testcase_24 AC 391 ms
223,640 KB
testcase_25 AC 377 ms
223,636 KB
testcase_26 AC 379 ms
223,564 KB
testcase_27 AC 376 ms
223,500 KB
testcase_28 AC 366 ms
223,508 KB
testcase_29 AC 370 ms
223,764 KB
testcase_30 AC 326 ms
227,120 KB
testcase_31 AC 324 ms
227,436 KB
testcase_32 AC 324 ms
227,184 KB
testcase_33 AC 325 ms
227,192 KB
testcase_34 AC 322 ms
227,176 KB
testcase_35 AC 323 ms
227,196 KB
testcase_36 AC 329 ms
227,312 KB
testcase_37 AC 324 ms
227,056 KB
testcase_38 AC 329 ms
227,056 KB
testcase_39 AC 327 ms
227,060 KB
testcase_40 AC 329 ms
224,928 KB
testcase_41 AC 332 ms
224,680 KB
testcase_42 AC 334 ms
224,664 KB
testcase_43 AC 332 ms
224,940 KB
testcase_44 AC 329 ms
224,668 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

from collections import deque
from bisect import bisect_left

n = II()
aa = LI()

lis = [inf]*(n+1)
qs = [deque() for _ in range(n+1)]
ss = [0]*(n+1)
lis[0] = -inf
qs[0].append((-inf, 1))
ss[0] = 1

for a in aa:
    i = bisect_left(lis, a)
    lis[i] = a
    while qs[i-1][-1][0] >= a:
        _, t = qs[i-1].pop()
        ss[i-1] -= t
    ss[i-1] %= md
    qs[i].appendleft((a, ss[i-1]))
    ss[i] += ss[i-1]
    ss[i] %= md
    # pDB(lis, qs, ss)

for s in ss[::-1]:
    if s:
        print(s)
        break
0