結果

問題 No.1804 Intersection of LIS
ユーザー mkawa2mkawa2
提出日時 2023-12-08 15:41:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 1,287 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 170,508 KB
最終ジャッジ日時 2024-09-27 02:50:02
合計ジャッジ時間 9,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 46 ms
52,096 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 269 ms
112,660 KB
testcase_04 AC 272 ms
112,392 KB
testcase_05 AC 269 ms
112,784 KB
testcase_06 AC 270 ms
112,520 KB
testcase_07 AC 275 ms
112,260 KB
testcase_08 AC 281 ms
112,520 KB
testcase_09 AC 270 ms
113,160 KB
testcase_10 AC 286 ms
112,400 KB
testcase_11 AC 272 ms
112,524 KB
testcase_12 AC 271 ms
112,652 KB
testcase_13 AC 284 ms
112,908 KB
testcase_14 AC 298 ms
112,524 KB
testcase_15 AC 271 ms
112,656 KB
testcase_16 AC 289 ms
112,652 KB
testcase_17 AC 287 ms
112,780 KB
testcase_18 AC 73 ms
70,784 KB
testcase_19 AC 73 ms
70,656 KB
testcase_20 AC 71 ms
69,888 KB
testcase_21 AC 72 ms
70,144 KB
testcase_22 AC 73 ms
70,784 KB
testcase_23 AC 73 ms
69,888 KB
testcase_24 AC 72 ms
70,528 KB
testcase_25 AC 73 ms
70,656 KB
testcase_26 AC 72 ms
70,144 KB
testcase_27 AC 75 ms
71,552 KB
testcase_28 AC 42 ms
52,096 KB
testcase_29 AC 42 ms
51,968 KB
testcase_30 AC 42 ms
52,096 KB
testcase_31 AC 42 ms
52,352 KB
testcase_32 AC 42 ms
52,352 KB
testcase_33 AC 42 ms
52,096 KB
testcase_34 AC 43 ms
52,096 KB
testcase_35 AC 323 ms
170,508 KB
testcase_36 AC 317 ms
170,248 KB
testcase_37 AC 198 ms
112,144 KB
testcase_38 AC 200 ms
112,016 KB
testcase_39 AC 42 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(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-(-1 << 31)
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

from bisect import bisect

n=II()
pp=LI()

lis=[]
dist=[0]*n
for i,p in enumerate(pp):
    j=bisect(lis,p)
    dist[i]=j
    if j==len(lis):
        lis.append(p)
    else:
        lis[j]=p

mx=len(lis)-1
lis=[]
ok=[]
idx=[]
for i in range(n)[::-1]:
    j=bisect(lis,-pp[i])
    if dist[i]+j!=mx:continue
    if j==len(lis):
        lis.append(-pp[i])
        ok.append(1)
    else:
        lis[j]=-pp[i]
        ok[j]=0

ans=[]
for p,j in zip(lis,ok):
    if j:ans.append(-p)

ans.reverse()
print(len(ans))
print(*ans)
0