結果

問題 No.1188 レベルX門松列
ユーザー qumazakiqumazaki
提出日時 2020-09-12 02:55:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 96,000 KB
最終ジャッジ日時 2024-06-09 10:05:38
合計ジャッジ時間 4,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
95,164 KB
testcase_01 AC 184 ms
92,544 KB
testcase_02 AC 194 ms
90,368 KB
testcase_03 AC 205 ms
95,104 KB
testcase_04 AC 198 ms
95,476 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 147 ms
93,952 KB
testcase_07 AC 195 ms
94,848 KB
testcase_08 AC 203 ms
94,848 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 43 ms
52,224 KB
testcase_11 AC 91 ms
76,672 KB
testcase_12 AC 91 ms
76,800 KB
testcase_13 AC 91 ms
76,800 KB
testcase_14 AC 153 ms
87,168 KB
testcase_15 AC 202 ms
96,000 KB
testcase_16 AC 76 ms
69,796 KB
testcase_17 AC 179 ms
91,136 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 175 ms
90,624 KB
testcase_20 AC 40 ms
51,840 KB
testcase_21 AC 42 ms
51,968 KB
testcase_22 AC 42 ms
51,968 KB
testcase_23 AC 42 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n = int(input())
a = list(map(int,input().split()))

inc_l = [0] * n
inc_r = [0] * n
dec_l = [0] * n
dec_r = [0] * n

for x,pm,cnt in zip([a,a,a[::-1],a[::-1]],[1,-1,1,-1],[inc_l,dec_l,inc_r,dec_r]):
    lis = [10**10] * n
    for i,xi in enumerate(x):
        xi *= pm
        ind = bisect.bisect_left(lis,xi)
        cnt[i] = ind
        lis[ind] = xi

inc_r = inc_r[::-1]
dec_r = dec_r[::-1]

ans = 0
for i in range(n):
    ans = max(ans, min(inc_l[i],inc_r[i]), min(dec_l[i],dec_r[i]))
print(ans)
0