結果
問題 | No.992 最長増加部分列の数え上げ |
ユーザー |
![]() |
提出日時 | 2022-07-05 10:50:14 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,230 bytes |
コンパイル時間 | 318 ms |
コンパイル使用メモリ | 82,144 KB |
実行使用メモリ | 211,268 KB |
最終ジャッジ日時 | 2024-12-15 14:02:28 |
合計ジャッジ時間 | 12,745 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 1 RE * 41 |
ソースコード
import sys# sys.setrecursionlimit(200005)int1 = lambda x: int(x)-1pDB = 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)-1inf = (1 << 31)-1md = 10**9+7# md = 998244353from collections import dequefrom bisect import bisect_leftn = II()aa = LI()lis = [inf]*(n+1)qs = [deque() for _ in range(n+1)]ss = [0]*(n+1)lis[0] = -1qs[0].append((-1, 1))ss[0] = 1for a in aa:i = bisect_left(lis, a)lis[i] = awhile qs[i-1][-1][0] >= a:_, t = qs[i-1].pop()ss[i-1] -= tss[i-1] %= mdqs[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