結果

問題 No.992 最長増加部分列の数え上げ
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2020-02-17 19:46:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 521 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 37 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,360 KB
最終ジャッジ日時 2024-10-06 15:09:05
合計ジャッジ時間 17,162 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,288 KB
testcase_01 AC 96 ms
12,032 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 244 ms
18,816 KB
testcase_05 AC 202 ms
16,896 KB
testcase_06 AC 278 ms
20,352 KB
testcase_07 AC 228 ms
18,048 KB
testcase_08 AC 157 ms
15,104 KB
testcase_09 AC 231 ms
18,304 KB
testcase_10 AC 279 ms
20,608 KB
testcase_11 AC 330 ms
22,656 KB
testcase_12 AC 134 ms
14,080 KB
testcase_13 AC 223 ms
17,920 KB
testcase_14 AC 227 ms
17,920 KB
testcase_15 AC 136 ms
13,824 KB
testcase_16 AC 465 ms
28,672 KB
testcase_17 AC 158 ms
14,976 KB
testcase_18 AC 217 ms
17,664 KB
testcase_19 AC 329 ms
22,272 KB
testcase_20 AC 501 ms
29,952 KB
testcase_21 AC 509 ms
29,952 KB
testcase_22 AC 521 ms
29,952 KB
testcase_23 AC 505 ms
29,952 KB
testcase_24 AC 505 ms
29,952 KB
testcase_25 AC 505 ms
30,208 KB
testcase_26 AC 506 ms
30,080 KB
testcase_27 AC 505 ms
29,952 KB
testcase_28 AC 512 ms
30,080 KB
testcase_29 AC 508 ms
29,952 KB
testcase_30 AC 389 ms
30,976 KB
testcase_31 AC 385 ms
30,848 KB
testcase_32 AC 386 ms
30,976 KB
testcase_33 AC 393 ms
31,360 KB
testcase_34 AC 387 ms
30,976 KB
testcase_35 AC 396 ms
29,824 KB
testcase_36 AC 392 ms
29,824 KB
testcase_37 AC 392 ms
30,080 KB
testcase_38 AC 393 ms
29,952 KB
testcase_39 AC 392 ms
30,080 KB
testcase_40 AC 419 ms
30,336 KB
testcase_41 AC 419 ms
30,464 KB
testcase_42 AC 419 ms
30,336 KB
testcase_43 AC 417 ms
30,592 KB
testcase_44 AC 422 ms
30,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

INF = 10 ** 10
MOD = 10 ** 9 + 7
N = gets.to_i
A = gets.split.map(&:to_i)
dp1 = [[INF, -INF]]
dp2 = [[0, 1]]

A.each do |a|
  m = dp1.bsearch_index do |dpm|
    dpm[-1] >= a
  end || dp1.size
  
  j = dp1[m - 1].bsearch_index{|a_| a_ < a }
  b = dp2[m - 1][-1] - dp2[m - 1][j - 1]
  
  if m < dp1.size
    dp1[m] << a
    dp2[m] << ((dp2[m][-1] + b) % MOD)
  else
    dp1 << [INF, a]
    dp2 << [0, b % MOD]
  end
end
puts dp2[-1][-1] % MOD
0