結果

問題 No.921 ずんだアロー
ユーザー qsako6qsako6
提出日時 2019-11-09 02:00:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-09-15 03:49:20
合計ジャッジ時間 4,511 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 88 ms
12,032 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 90 ms
12,032 KB
testcase_05 AC 87 ms
12,032 KB
testcase_06 AC 86 ms
12,032 KB
testcase_07 AC 87 ms
12,160 KB
testcase_08 AC 90 ms
12,032 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 181 ms
22,656 KB
testcase_11 AC 185 ms
23,168 KB
testcase_12 AC 108 ms
14,080 KB
testcase_13 AC 156 ms
19,968 KB
testcase_14 AC 166 ms
20,864 KB
testcase_15 AC 136 ms
15,616 KB
testcase_16 AC 94 ms
12,416 KB
testcase_17 AC 167 ms
21,376 KB
testcase_18 AC 189 ms
23,424 KB
testcase_19 AC 190 ms
23,424 KB
testcase_20 AC 193 ms
23,552 KB
testcase_21 AC 192 ms
23,424 KB
testcase_22 AC 192 ms
23,552 KB
testcase_23 AC 189 ms
23,424 KB
testcase_24 AC 192 ms
23,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.split.map(&:to_i)

dp = Array.new(n + 1) { Array.new(2, 0) }
# dp[i][j]:= i(i-indexed)番目までの餅を処理したうえでi番目の餅がずんだ餅(j = 1) / 餅(j = 0)である並びのうち、最適なものにおけるずんだ餅の数
n.times do |i|
  dp[i+1][0] = dp[i].max
  if i != 0 && a[i] != a[i-1]
    dp[i+1][1] = dp[i][0] + 1
  else
    dp[i+1][1] = dp[i].max + 1
  end
end
p dp[n].max
0