結果

問題 No.1188 レベルX門松列
ユーザー simansiman
提出日時 2021-04-30 11:53:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 887 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-07-18 10:05:06
合計ジャッジ時間 13,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 883 ms
32,128 KB
testcase_01 AC 709 ms
29,184 KB
testcase_02 AC 637 ms
27,008 KB
testcase_03 AC 843 ms
32,128 KB
testcase_04 AC 847 ms
32,128 KB
testcase_05 AC 89 ms
12,032 KB
testcase_06 AC 887 ms
32,128 KB
testcase_07 AC 853 ms
32,256 KB
testcase_08 AC 852 ms
32,256 KB
testcase_09 AC 89 ms
12,288 KB
testcase_10 AC 90 ms
12,160 KB
testcase_11 AC 141 ms
13,568 KB
testcase_12 AC 148 ms
13,568 KB
testcase_13 AC 151 ms
13,568 KB
testcase_14 AC 516 ms
24,576 KB
testcase_15 AC 829 ms
32,640 KB
testcase_16 AC 95 ms
12,288 KB
testcase_17 AC 666 ms
27,776 KB
testcase_18 AC 88 ms
12,288 KB
testcase_19 AC 624 ms
26,880 KB
testcase_20 AC 90 ms
12,032 KB
testcase_21 AC 91 ms
12,288 KB
testcase_22 AC 90 ms
12,288 KB
testcase_23 AC 90 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
B = A.map { |a| -a }

def lis(arr)
  len = arr.size
  dp = Array.new(len, Float::INFINITY)
  h1 = []

  len.times do |i|
    index = dp.bsearch_index { |x| x >= arr[i] }
    dp[index] = arr[i]
    h1.push(index)
  end

  dp2 = Array.new(len, Float::INFINITY)
  arr2 = arr.reverse
  h2 = []

  len.times do |i|
    index = dp2.bsearch_index { |x| x >= arr2[i] }
    dp2[index] = arr2[i]
    h2.unshift(index)
  end

  [*0...len].map { |i| [h1[i], h2[i]].min }.max
end

puts [lis(A), lis(B)].max
0