結果

問題 No.1188 レベルX門松列
ユーザー simansiman
提出日時 2021-04-30 11:50:22
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 34 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,232 KB
最終ジャッジ日時 2024-07-18 10:03:23
合計ジャッジ時間 11,215 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 769 ms
30,592 KB
testcase_05 AC 75 ms
12,288 KB
testcase_06 AC 785 ms
30,592 KB
testcase_07 AC 743 ms
30,720 KB
testcase_08 AC 763 ms
30,592 KB
testcase_09 AC 74 ms
12,288 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 77 ms
12,160 KB
testcase_19 WA -
testcase_20 AC 74 ms
12,288 KB
testcase_21 AC 73 ms
12,160 KB
testcase_22 AC 74 ms
12,160 KB
testcase_23 AC 74 ms
12,160 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)
  h2 = []

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

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

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