結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,032 KB
testcase_01 AC 86 ms
12,032 KB
testcase_02 AC 88 ms
12,288 KB
testcase_03 AC 86 ms
12,032 KB
testcase_04 AC 273 ms
22,272 KB
testcase_05 AC 218 ms
18,688 KB
testcase_06 AC 312 ms
23,936 KB
testcase_07 AC 245 ms
20,608 KB
testcase_08 AC 168 ms
16,000 KB
testcase_09 AC 257 ms
21,632 KB
testcase_10 AC 315 ms
24,320 KB
testcase_11 AC 392 ms
28,032 KB
testcase_12 AC 137 ms
14,080 KB
testcase_13 AC 240 ms
19,328 KB
testcase_14 AC 243 ms
20,352 KB
testcase_15 AC 139 ms
14,336 KB
testcase_16 AC 565 ms
37,248 KB
testcase_17 AC 166 ms
15,872 KB
testcase_18 AC 236 ms
20,480 KB
testcase_19 AC 372 ms
27,776 KB
testcase_20 AC 623 ms
41,984 KB
testcase_21 AC 620 ms
42,752 KB
testcase_22 AC 619 ms
42,496 KB
testcase_23 AC 618 ms
42,752 KB
testcase_24 AC 618 ms
42,496 KB
testcase_25 AC 622 ms
41,856 KB
testcase_26 AC 615 ms
41,472 KB
testcase_27 AC 624 ms
43,008 KB
testcase_28 AC 620 ms
42,112 KB
testcase_29 AC 615 ms
41,728 KB
testcase_30 AC 387 ms
31,104 KB
testcase_31 AC 384 ms
30,848 KB
testcase_32 AC 386 ms
30,976 KB
testcase_33 AC 385 ms
30,976 KB
testcase_34 AC 385 ms
30,720 KB
testcase_35 AC 388 ms
29,824 KB
testcase_36 AC 387 ms
30,080 KB
testcase_37 AC 385 ms
30,080 KB
testcase_38 AC 392 ms
30,080 KB
testcase_39 AC 388 ms
29,824 KB
testcase_40 AC 417 ms
30,336 KB
testcase_41 AC 421 ms
30,592 KB
testcase_42 AC 415 ms
30,464 KB
testcase_43 AC 415 ms
30,592 KB
testcase_44 AC 415 ms
30,464 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
  else
    dp1 << [INF, a]
    dp2 << [0, b]
  end
end
puts dp2[-1][-1] % MOD
0