結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー yuruhiyayuruhiya
提出日時 2021-01-29 22:59:32
言語 Crystal
(1.11.2)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 11,973 ms
コンパイル使用メモリ 296,072 KB
実行使用メモリ 32,676 KB
最終ジャッジ日時 2024-06-30 22:16:40
合計ジャッジ時間 14,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 96 ms
6,940 KB
testcase_03 AC 21 ms
6,940 KB
testcase_04 AC 35 ms
6,940 KB
testcase_05 AC 117 ms
32,628 KB
testcase_06 AC 118 ms
32,676 KB
testcase_07 AC 108 ms
32,628 KB
testcase_08 AC 116 ms
32,592 KB
testcase_09 AC 113 ms
27,216 KB
testcase_10 AC 118 ms
27,908 KB
testcase_11 AC 113 ms
27,228 KB
testcase_12 AC 113 ms
27,268 KB
testcase_13 AC 112 ms
27,296 KB
testcase_14 AC 111 ms
27,228 KB
testcase_15 AC 111 ms
27,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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