結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー kakel-sankakel-san
提出日時 2024-07-30 21:20:03
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 1,525 bytes
コンパイル時間 7,137 ms
コンパイル使用メモリ 167,056 KB
実行使用メモリ 208,572 KB
最終ジャッジ日時 2024-07-30 21:20:15
合計ジャッジ時間 10,329 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
30,968 KB
testcase_01 AC 53 ms
30,976 KB
testcase_02 AC 113 ms
43,264 KB
testcase_03 AC 66 ms
32,768 KB
testcase_04 AC 70 ms
34,920 KB
testcase_05 AC 98 ms
56,832 KB
testcase_06 AC 97 ms
56,828 KB
testcase_07 AC 94 ms
57,216 KB
testcase_08 AC 117 ms
56,956 KB
testcase_09 AC 98 ms
52,992 KB
testcase_10 AC 99 ms
52,480 KB
testcase_11 AC 101 ms
52,728 KB
testcase_12 AC 96 ms
52,480 KB
testcase_13 AC 94 ms
52,608 KB
testcase_14 AC 100 ms
52,736 KB
testcase_15 AC 98 ms
208,572 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (82 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new long[t];
        for (var u = 0; u < t; ++u)
        {
            var n = NN;
            var a = NList;
            ans[u] = Kado(n, a);
        }
        WriteLine(string.Join("\n", ans));
    }
    static long Kado(int n, int[] a)
    {
        var list = a.ToList();
        var ans = Kado(n, list);
        list.Add(list[0]);
        list.RemoveAt(0);
        ans = Math.Max(ans, Kado(n, list));
        list.Add(list[0]);
        list.RemoveAt(0);
        ans = Math.Max(ans, Kado(n, list));
        return ans;
    }
    static long Kado(int n, List<int> a)
    {
        var dp = new long[a.Count - 2];
        for (var i = 0; i + 2 < a.Count; ++i)
        {
            if (a[i] != a[i + 2] && ((a[i] > a[i + 1] && a[i + 1] < a[i + 2]) || (a[i] < a[i + 1] && a[i + 1] > a[i + 2]))) dp[i] = a[i];
        }
        for (var i = 0; i < dp.Length; ++i)
        {
            if (i - 3 >= 0) dp[i] += dp[i - 3];
            if (i > 0) dp[i] = Math.Max(dp[i], dp[i - 1]);
        }
        return dp[^1];
    }
}
0