結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー yuruhiyayuruhiya
提出日時 2021-01-29 23:00:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 29,440 KB
最終ジャッジ日時 2024-06-27 09:28:44
合計ジャッジ時間 8,327 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 366 ms
12,672 KB
testcase_03 AC 143 ms
12,672 KB
testcase_04 AC 195 ms
12,800 KB
testcase_05 AC 594 ms
28,672 KB
testcase_06 AC 594 ms
28,672 KB
testcase_07 AC 490 ms
28,800 KB
testcase_08 AC 606 ms
28,800 KB
testcase_09 AC 576 ms
29,184 KB
testcase_10 AC 571 ms
29,440 KB
testcase_11 AC 566 ms
29,312 KB
testcase_12 AC 579 ms
29,184 KB
testcase_13 AC 580 ms
29,312 KB
testcase_14 AC 572 ms
29,056 KB
testcase_15 AC 575 ms
29,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def check(a)
  a.uniq.size == 3 && (a.max == a[1] || a.min == a[1])
end

def func(n, a)
  dp = [0] * -~n
  (0..n).each do |i|
    dp[i] = [dp[i], dp[i - 1] || 0].max
    dp[i + 3] = [dp[i + 3], dp[i] + a[i]].max if check(a[i, 3])
  end
  dp[n]
end

gets.to_i.times do
  n = gets.to_i
  a = gets.split.map(&:to_i)
  puts [func(n, a), func(n, a[1..] + a[0, 1]), func(n, a[2..] + a[0, 2])].max
end
0