結果

問題 No.127 門松もどき
ユーザー nebukuro09nebukuro09
提出日時 2018-02-08 16:03:59
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 889 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 117,396 KB
実行使用メモリ 75,760 KB
最終ジャッジ日時 2024-06-12 23:48:38
合計ジャッジ時間 3,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 178 ms
75,760 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 13 ms
8,868 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 101 ms
55,152 KB
testcase_13 AC 131 ms
63,292 KB
testcase_14 AC 123 ms
60,904 KB
testcase_15 AC 166 ms
72,308 KB
testcase_16 AC 121 ms
59,568 KB
testcase_17 AC 128 ms
64,256 KB
testcase_18 AC 111 ms
57,960 KB
testcase_19 AC 67 ms
31,664 KB
testcase_20 AC 68 ms
32,700 KB
testcase_21 AC 33 ms
22,924 KB
testcase_22 AC 176 ms
75,032 KB
testcase_23 AC 179 ms
75,676 KB
testcase_24 AC 144 ms
67,200 KB
testcase_25 AC 162 ms
72,652 KB
testcase_26 AC 81 ms
34,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, std.bitmanip;

immutable long MOD = 10^^9 + 7;

void main() {
    auto N = readln.chomp.to!int;
    auto A = readln.split.map!(to!int).array;

    auto dp1 = new int[][](N, N);
    auto dp2 = new int[][](N, N);
    foreach (i; 0..N) dp1[i][i] = dp2[i][i] = 1;

    foreach (len; 2..N+1) {
        foreach (l; 0..N-len+1) {
            int r = l + len - 1;
            dp1[l][r] = dp1[l][r-1];
            if (A[l] < A[r]) dp1[l][r] = max(dp1[l][r], dp2[l+1][r] + 1);
            dp2[l][r] = dp2[l+1][r];
            if (A[l] > A[r]) dp2[l][r] = max(dp2[l][r], dp1[l][r-1] + 1);
        } 
    }

    int ans = 0;
    foreach (i; 0..N) foreach (j; 0..N) ans = max(ans, dp1[i][j], dp2[i][j]);
    ans.writeln;
}
0