結果
問題 | No.1368 サイクルの中に眠る門松列 |
ユーザー | さかぽん |
提出日時 | 2021-02-18 15:18:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,071 bytes |
コンパイル時間 | 934 ms |
コンパイル使用メモリ | 114,416 KB |
実行使用メモリ | 53,432 KB |
最終ジャッジ日時 | 2024-09-14 21:36:03 |
合計ジャッジ時間 | 4,059 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
25,004 KB |
testcase_01 | AC | 32 ms
24,924 KB |
testcase_02 | AC | 91 ms
33,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 143 ms
53,296 KB |
testcase_06 | AC | 145 ms
51,388 KB |
testcase_07 | AC | 137 ms
49,992 KB |
testcase_08 | AC | 145 ms
53,432 KB |
testcase_09 | AC | 138 ms
49,220 KB |
testcase_10 | AC | 137 ms
49,232 KB |
testcase_11 | AC | 138 ms
47,556 KB |
testcase_12 | AC | 137 ms
51,248 KB |
testcase_13 | AC | 138 ms
49,480 KB |
testcase_14 | AC | 137 ms
47,300 KB |
testcase_15 | AC | 137 ms
47,044 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; class C { static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse); static void Main() => Console.WriteLine(string.Join("\n", new int[int.Parse(Console.ReadLine())].Select(_ => Solve()))); static object Solve() { var n = int.Parse(Console.ReadLine()); var a = Read().ToList(); var r = 0L; for (int i = 0; i < 3; i++) { r = Math.Max(r, GetMax(a.ToArray())); a.Add(a[0]); a.RemoveAt(0); } return r; } static long GetMax(int[] a) { var p = new long[a.Length]; for (int i = 0; i < a.Length - 2; i++) if (IsKadomatsu(a, i)) p[i] = a[i]; var dp = new long[a.Length]; dp[0] = p[0]; for (int i = 3; i < a.Length; i++) { var max = 0L; if (i - 5 >= 0) max = Math.Max(max, dp[i - 5]); if (i - 4 >= 0) max = Math.Max(max, dp[i - 4]); max = Math.Max(max, dp[i - 3]); dp[i] = max + p[i]; } return dp.Max(); } static bool IsKadomatsu(int[] a, int i) => 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]); }