結果

問題 No.127 門松もどき
ユーザー gigurururugigurururu
提出日時 2015-01-15 23:31:32
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,549 ms / 5,000 ms
コード長 583 bytes
コンパイル時間 8,414 ms
コンパイル使用メモリ 263,548 KB
実行使用メモリ 173,172 KB
最終ジャッジ日時 2024-06-28 22:12:17
合計ジャッジ時間 41,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 846 ms
65,656 KB
testcase_01 AC 806 ms
65,472 KB
testcase_02 AC 814 ms
65,728 KB
testcase_03 AC 820 ms
65,496 KB
testcase_04 AC 1,519 ms
173,144 KB
testcase_05 AC 816 ms
65,520 KB
testcase_06 AC 933 ms
70,044 KB
testcase_07 AC 838 ms
65,644 KB
testcase_08 AC 882 ms
65,900 KB
testcase_09 AC 833 ms
65,652 KB
testcase_10 AC 818 ms
65,576 KB
testcase_11 AC 893 ms
65,892 KB
testcase_12 AC 1,211 ms
116,200 KB
testcase_13 AC 1,347 ms
146,316 KB
testcase_14 AC 1,268 ms
139,016 KB
testcase_15 AC 1,493 ms
165,752 KB
testcase_16 AC 1,302 ms
136,484 KB
testcase_17 AC 1,363 ms
148,140 KB
testcase_18 AC 1,300 ms
133,796 KB
testcase_19 AC 1,103 ms
104,756 KB
testcase_20 AC 1,128 ms
105,280 KB
testcase_21 AC 1,035 ms
81,096 KB
testcase_22 AC 1,548 ms
172,980 KB
testcase_23 AC 1,549 ms
173,172 KB
testcase_24 AC 1,346 ms
153,172 KB
testcase_25 AC 1,493 ms
166,344 KB
testcase_26 AC 1,176 ms
110,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn
object Main extends App {
    val N = StdIn.readInt()
    val A = StdIn.readLine().split(" ").map(_.toInt)
    val dpL, dpR = Array.fill(N)(Array.fill(N)(1))
    (1 until N).foreach { d =>
        (0 until N - d).foreach { l =>
            val r = l + d
            val pdpL = dpL(l)(r - 1)
            val pdpR = dpR(l + 1)(r)
            dpL(l)(r) = if (A(l) >= A(r)) pdpL else Seq(pdpL, (pdpR + 1)).max
            dpR(l)(r) = if (A(l) <= A(r)) pdpR else Seq(pdpR, (pdpL + 1)).max
        }
    }
    println(((0 until N).map(dpL(_)(N - 1)) ++ dpR(0)).max)
}
0