結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー keymoonkeymoon
提出日時 2021-01-29 21:36:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,299 bytes
コンパイル時間 3,334 ms
コンパイル使用メモリ 103,592 KB
実行使用メモリ 48,344 KB
最終ジャッジ日時 2023-09-09 14:53:08
合計ジャッジ時間 5,693 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
21,588 KB
testcase_01 AC 67 ms
23,676 KB
testcase_02 AC 195 ms
25,680 KB
testcase_03 AC 92 ms
25,700 KB
testcase_04 AC 104 ms
25,880 KB
testcase_05 AC 180 ms
48,336 KB
testcase_06 AC 179 ms
46,196 KB
testcase_07 AC 177 ms
48,344 KB
testcase_08 AC 182 ms
48,240 KB
testcase_09 AC 169 ms
45,544 KB
testcase_10 AC 168 ms
43,692 KB
testcase_11 AC 167 ms
41,512 KB
testcase_12 AC 167 ms
43,712 KB
testcase_13 AC 167 ms
47,736 KB
testcase_14 AC 163 ms
43,516 KB
testcase_15 AC 169 ms
45,540 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {

        int t = int.Parse(Console.ReadLine());
        for (int i = 0; i < t; i++)
        {
            Solve();
        }
    }
    static bool isKadomatsu(int a, int b, int c)
    {
        if (a == b || b == c || c == a) return false;
        if (a < b && b > c) return true;
        if (a > b && b < c) return true;
        return false;
    }
    static void Solve()
    {
        int n = int.Parse(Console.ReadLine());
        var a = Console.ReadLine().Split().Select(int.Parse).ToArray();
        long Solve(int[] arr)
        {
            long[] dp = new long[n + 1];
            for (int i = 2; i < arr.Length; i++)
            {
                dp[i + 1] = dp[i];
                if (isKadomatsu(arr[i - 2], arr[i - 1], arr[i])) dp[i + 1] = Max(dp[i - 2] + arr[i - 2], dp[i + 1]);
            }
            return dp[n];
        }
        Console.WriteLine(Enumerable.Range(0, 3).Select(x => Solve(a.Skip(x).Concat(a.Take(x)).ToArray())).Max());
    }
}
0