結果

問題 No.2889 Rusk
ユーザー tobisatistobisatis
提出日時 2024-09-13 21:30:19
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 2,558 bytes
コンパイル時間 8,825 ms
コンパイル使用メモリ 165,228 KB
実行使用メモリ 273,648 KB
最終ジャッジ日時 2024-09-13 21:30:54
合計ジャッジ時間 18,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,336 KB
testcase_01 AC 60 ms
30,336 KB
testcase_02 AC 59 ms
30,080 KB
testcase_03 AC 58 ms
30,588 KB
testcase_04 AC 59 ms
30,588 KB
testcase_05 AC 59 ms
30,464 KB
testcase_06 AC 58 ms
30,336 KB
testcase_07 AC 60 ms
30,336 KB
testcase_08 AC 60 ms
30,464 KB
testcase_09 AC 59 ms
30,588 KB
testcase_10 AC 59 ms
30,576 KB
testcase_11 AC 59 ms
30,592 KB
testcase_12 AC 60 ms
30,208 KB
testcase_13 AC 60 ms
30,208 KB
testcase_14 AC 72 ms
34,012 KB
testcase_15 AC 92 ms
43,772 KB
testcase_16 AC 136 ms
62,848 KB
testcase_17 AC 84 ms
39,772 KB
testcase_18 AC 123 ms
58,472 KB
testcase_19 AC 198 ms
78,592 KB
testcase_20 AC 222 ms
87,552 KB
testcase_21 AC 197 ms
78,592 KB
testcase_22 AC 183 ms
76,800 KB
testcase_23 AC 140 ms
65,408 KB
testcase_24 AC 222 ms
87,040 KB
testcase_25 AC 140 ms
65,404 KB
testcase_26 AC 197 ms
78,208 KB
testcase_27 AC 236 ms
89,344 KB
testcase_28 AC 149 ms
68,980 KB
testcase_29 AC 174 ms
73,344 KB
testcase_30 AC 175 ms
73,344 KB
testcase_31 AC 225 ms
88,704 KB
testcase_32 AC 125 ms
59,264 KB
testcase_33 AC 82 ms
38,528 KB
testcase_34 AC 242 ms
100,736 KB
testcase_35 AC 242 ms
100,352 KB
testcase_36 AC 242 ms
100,860 KB
testcase_37 AC 240 ms
100,608 KB
testcase_38 AC 240 ms
100,480 KB
testcase_39 AC 191 ms
72,576 KB
testcase_40 AC 181 ms
68,480 KB
testcase_41 AC 197 ms
74,368 KB
testcase_42 AC 150 ms
62,848 KB
testcase_43 AC 106 ms
44,288 KB
testcase_44 AC 179 ms
66,048 KB
testcase_45 AC 146 ms
62,592 KB
testcase_46 AC 87 ms
40,048 KB
testcase_47 AC 109 ms
46,208 KB
testcase_48 AC 186 ms
69,120 KB
testcase_49 AC 59 ms
30,464 KB
testcase_50 AC 59 ms
30,208 KB
testcase_51 AC 58 ms
30,208 KB
testcase_52 AC 57 ms
30,208 KB
testcase_53 AC 58 ms
30,080 KB
testcase_54 AC 305 ms
273,648 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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 #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var n = Int();
        var xz = 3.Repeat(() => n.Repeat(Int));
        var min = long.MinValue / 8;
        var dp = new long[3, 3];
        for (var i = 0; i < 3; i++) for (var j = 0; j < 3; j++) dp[i, j] = min;
        dp[0, 0] = 0;
        for (var k = 0; k < n; k++)
        {
            var ep = new long[3, 3];
            for (var i = 0; i < 3; i++) for (var j = 0; j < 3; j++) ep[i, j] = min;
            for (var i = 0; i < 3; i++) for (var j = 0; j < 3; j++)
            {
                var v = dp[i, j];
                ep[i, j] = Math.Max(ep[i, j], v + xz[i][k]);
                if (i + 1 < 3 && j + 1 < 3) ep[i + 1, j + 1] = Math.Max(ep[i + 1, j + 1], v + xz[i + 1][k]);
                if (i + 2 < 3 && j + 2 < 3) ep[i + 2, j + 2] = Math.Max(ep[i + 2, j + 2], v + xz[i + 2][k]);
                if (i >= 1) ep[i - 1, j] = Math.Max(ep[i - 1, j], v + xz[i - 1][k]);
                if (i >= 2) ep[i - 2, j] = Math.Max(ep[i - 2, j], v + xz[i - 2][k]);
            }
            dp = ep;
        }
        var ans = min;
        for (var i = 0; i < 3; i++) for (var j = 0; j < 3; j++) ans = Math.Max(ans, dp[i, j]);
        return ans;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Trim().Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
}
0