結果

問題 No.1804 Intersection of LIS
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-01-08 03:48:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,760 KB
実行使用メモリ 251,696 KB
最終ジャッジ日時 2024-11-14 09:23:32
合計ジャッジ時間 10,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,824 KB
testcase_01 AC 38 ms
53,080 KB
testcase_02 AC 38 ms
53,604 KB
testcase_03 AC 407 ms
171,148 KB
testcase_04 AC 407 ms
173,868 KB
testcase_05 AC 409 ms
173,636 KB
testcase_06 AC 415 ms
171,288 KB
testcase_07 AC 417 ms
173,020 KB
testcase_08 AC 413 ms
174,048 KB
testcase_09 AC 413 ms
173,132 KB
testcase_10 AC 417 ms
171,572 KB
testcase_11 AC 404 ms
174,268 KB
testcase_12 AC 405 ms
171,424 KB
testcase_13 AC 417 ms
171,656 KB
testcase_14 AC 429 ms
173,336 KB
testcase_15 AC 411 ms
171,344 KB
testcase_16 AC 426 ms
173,504 KB
testcase_17 AC 420 ms
171,832 KB
testcase_18 AC 64 ms
73,468 KB
testcase_19 AC 65 ms
74,204 KB
testcase_20 AC 67 ms
74,168 KB
testcase_21 AC 63 ms
72,800 KB
testcase_22 AC 66 ms
72,816 KB
testcase_23 AC 63 ms
72,184 KB
testcase_24 AC 65 ms
72,400 KB
testcase_25 AC 64 ms
72,496 KB
testcase_26 AC 63 ms
71,532 KB
testcase_27 AC 68 ms
74,356 KB
testcase_28 AC 38 ms
53,036 KB
testcase_29 AC 39 ms
53,352 KB
testcase_30 AC 38 ms
53,684 KB
testcase_31 AC 38 ms
53,036 KB
testcase_32 AC 38 ms
52,612 KB
testcase_33 AC 38 ms
53,976 KB
testcase_34 AC 38 ms
53,348 KB
testcase_35 AC 413 ms
251,464 KB
testcase_36 AC 406 ms
251,696 KB
testcase_37 AC 235 ms
153,504 KB
testcase_38 AC 229 ms
153,308 KB
testcase_39 AC 38 ms
53,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

https://yukicoder.me/problems/no/1804

辞書順最大・最小のLISを見付ける

"""

import sys
from sys import stdin

#return lexicography minimum LIS
def LISMIN(lis):
    import bisect

    dic = {}
    
    seq = []
    for c in lis:
        ind = bisect.bisect_left(seq,c)
        if ind == len(seq):
            seq.append(c)
            if len(seq) == 1:
                dic[c] = None
            else:
                dic[c] = seq[-2]
        else:
            seq[ind] = c
            if ind == 0:
                dic[c] = None
            else:
                dic[c] = seq[ind-1]

    #print (seq)
    ret = []
    v = seq[-1]
    while v != None:
        ret.append(v)
        v = dic[v]
    ret.reverse()

    return ret
    

N = int(stdin.readline())
P = list(map(int,stdin.readline().split()))

LM = LISMIN(P)

P.reverse()
for i in range(N):
    P[i] *= -1
RM = LISMIN(P)
RM.reverse()
for i in range(len(RM)):
    RM[i] *= -1

ans = []
for i in range(len(LM)):
    if LM[i] == RM[i]:
        ans.append(LM[i])
print (len(ans))
print (*ans)
0