結果
| 問題 | 
                            No.1368 サイクルの中に眠る門松列
                             | 
                    
| コンテスト | |
| ユーザー | 
                             keymoon
                         | 
                    
| 提出日時 | 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 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 15 | 
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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());
    }
}
            
            
            
        
            
keymoon