結果

問題 No.1804 Intersection of LIS
ユーザー titiatitia
提出日時 2022-01-08 01:19:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,459 ms / 2,000 ms
コード長 1,157 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 93,272 KB
最終ジャッジ日時 2024-11-14 09:21:42
合計ジャッジ時間 22,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 1,018 ms
48,812 KB
testcase_04 AC 1,013 ms
48,900 KB
testcase_05 AC 1,021 ms
48,920 KB
testcase_06 AC 1,000 ms
48,776 KB
testcase_07 AC 1,014 ms
48,792 KB
testcase_08 AC 1,025 ms
48,932 KB
testcase_09 AC 1,011 ms
48,856 KB
testcase_10 AC 1,019 ms
49,008 KB
testcase_11 AC 1,016 ms
48,916 KB
testcase_12 AC 1,027 ms
48,908 KB
testcase_13 AC 1,012 ms
48,968 KB
testcase_14 AC 1,001 ms
48,848 KB
testcase_15 AC 1,005 ms
48,796 KB
testcase_16 AC 1,019 ms
48,848 KB
testcase_17 AC 1,010 ms
48,792 KB
testcase_18 AC 40 ms
11,264 KB
testcase_19 AC 40 ms
11,136 KB
testcase_20 AC 39 ms
11,264 KB
testcase_21 AC 40 ms
11,264 KB
testcase_22 AC 40 ms
11,264 KB
testcase_23 AC 40 ms
11,264 KB
testcase_24 AC 40 ms
11,264 KB
testcase_25 AC 40 ms
11,264 KB
testcase_26 AC 39 ms
11,264 KB
testcase_27 AC 39 ms
11,136 KB
testcase_28 AC 31 ms
11,008 KB
testcase_29 AC 31 ms
10,880 KB
testcase_30 AC 31 ms
10,880 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 32 ms
10,880 KB
testcase_33 AC 31 ms
10,880 KB
testcase_34 AC 31 ms
10,880 KB
testcase_35 AC 1,459 ms
93,272 KB
testcase_36 AC 1,437 ms
93,268 KB
testcase_37 AC 1,044 ms
41,576 KB
testcase_38 AC 1,037 ms
41,464 KB
testcase_39 AC 31 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

# LIS(最長増加部分列)
import bisect


DP=[float("inf")]*N # DP[i]で、長さiのLISの最終要素の最小値.
POS=[-1]*N

for i in range(N):
    a=A[i]
    pos=bisect.bisect_left(DP,a)
    DP[pos]=a
    POS[i]=pos
    

ANS=0
for i in range(N):
    if DP[i]!=float("inf"): # float("inf")でない最小のものがLISの長さ
        ANS=i

LIST=[]
x=ANS
for i in range(N-1,-1,-1):
    if POS[i]==x:
        LIST.append(A[i])
        x-=1

#print(LIST)

A=[-a for a in A][::-1]

DP=[float("inf")]*N # DP[i]で、長さiのLISの最終要素の最小値.
POS=[-1]*N

for i in range(N):
    a=A[i]
    pos=bisect.bisect_left(DP,a)
    DP[pos]=a
    POS[i]=pos
    

ANS=0
for i in range(N):
    if DP[i]!=float("inf"): # float("inf")でない最小のものがLISの長さ
        ANS=i

LIST2=[]
x=ANS
for i in range(N-1,-1,-1):
    if POS[i]==x:
        LIST2.append(A[i])
        x-=1

SET=set(LIST)
SET2=set([-x for x in LIST2])

ANS=[]

A=[-a for a in A][::-1]

for a in A:
    if a in SET and a in SET2:
        ANS.append(a)
print(len(ANS))
print(*ANS)
0