結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー keymoonkeymoon
提出日時 2021-01-29 21:36:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 1,299 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 114,588 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-06-27 07:45:36
合計ジャッジ時間 3,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
25,292 KB
testcase_01 AC 34 ms
25,392 KB
testcase_02 AC 174 ms
29,512 KB
testcase_03 AC 60 ms
31,548 KB
testcase_04 AC 77 ms
31,428 KB
testcase_05 AC 143 ms
52,096 KB
testcase_06 AC 139 ms
50,020 KB
testcase_07 AC 141 ms
52,072 KB
testcase_08 AC 142 ms
50,160 KB
testcase_09 AC 133 ms
49,280 KB
testcase_10 AC 132 ms
49,532 KB
testcase_11 AC 131 ms
47,360 KB
testcase_12 AC 131 ms
47,224 KB
testcase_13 AC 132 ms
49,536 KB
testcase_14 AC 133 ms
45,324 KB
testcase_15 AC 131 ms
49,656 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