結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー bluemeganebluemegane
提出日時 2021-02-04 09:45:18
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 1,504 bytes
コンパイル時間 922 ms
コンパイル使用メモリ 113,104 KB
実行使用メモリ 50,244 KB
最終ジャッジ日時 2024-06-30 14:57:35
合計ジャッジ時間 3,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,844 KB
testcase_01 AC 25 ms
21,936 KB
testcase_02 AC 135 ms
28,328 KB
testcase_03 AC 46 ms
29,996 KB
testcase_04 AC 61 ms
28,208 KB
testcase_05 AC 123 ms
48,056 KB
testcase_06 AC 128 ms
46,152 KB
testcase_07 AC 123 ms
50,244 KB
testcase_08 AC 126 ms
48,188 KB
testcase_09 AC 120 ms
45,764 KB
testcase_10 AC 119 ms
43,972 KB
testcase_11 AC 118 ms
45,904 KB
testcase_12 AC 122 ms
45,752 KB
testcase_13 AC 119 ms
43,716 KB
testcase_14 AC 120 ms
41,668 KB
testcase_15 AC 120 ms
48,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    public static int[] a, b, c;
    static void Main()
    {
        var q = int.Parse(Console.ReadLine().Trim());
        while (q-- > 0)
        {
            var n = int.Parse(Console.ReadLine().Trim());
            string[] line = Console.ReadLine().Trim().Split(' ');
            a = new int[n];
            b = new int[n];
            c = new int[n];
            for (int i = 0; i < n; i++)
            {
                var t = int.Parse(line[i]);
                a[i] = t;
                if (i - 1 >= 0) b[i - 1] = t;
                if (i - 2 >= 0) c[i - 2] = t;
            }
            b[n - 1] = a[0]; c[n - 2] = a[0]; c[n - 1] = a[1];
            var ans = Max(Dp(n, a), Dp(n, b));
            ans = Max(ans, Dp(n, c));
            Console.WriteLine(ans);
        }
    }
    static long Dp(int n, int[] t)
    {
        var dp = new long[n];
        var w = new int[3] { t[0], t[1], t[2] };
        dp[2] = check(w) ? t[0] : 0;
        for (int i = 3; i < n; i++)
        {
            if (check(new int[] { t[i - 2], t[i - 1], t[i] }))
                dp[i] = Max(dp[i - 1], dp[i - 3] + t[i - 2]);
            else dp[i] = dp[i - 1];
        }
        return dp[n - 1];
    }
    static bool check(int[] t)
    {
        if (!(t[0] != t[1] && t[1] != t[2] && t[0] != t[2])) return false;
        if (t[1] > t[0] && t[1] > t[2]) return true;
        if (t[1] < t[0] && t[1] < t[2]) return true;
        return false;
    }
}
0