結果

問題 No.1948 足し算するだけのパズルゲーム(1)
ユーザー kakel-sankakel-san
提出日時 2024-02-04 15:21:47
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 1,757 bytes
コンパイル時間 7,872 ms
コンパイル使用メモリ 166,864 KB
実行使用メモリ 209,136 KB
最終ジャッジ日時 2024-09-28 11:18:17
合計ジャッジ時間 11,748 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,848 KB
testcase_01 AC 61 ms
30,592 KB
testcase_02 AC 61 ms
30,720 KB
testcase_03 AC 60 ms
30,464 KB
testcase_04 AC 59 ms
30,440 KB
testcase_05 AC 60 ms
30,436 KB
testcase_06 AC 61 ms
30,848 KB
testcase_07 AC 110 ms
49,024 KB
testcase_08 AC 125 ms
59,404 KB
testcase_09 AC 126 ms
59,400 KB
testcase_10 AC 125 ms
59,268 KB
testcase_11 AC 125 ms
59,352 KB
testcase_12 AC 114 ms
52,480 KB
testcase_13 AC 114 ms
52,352 KB
testcase_14 AC 114 ms
52,352 KB
testcase_15 AC 114 ms
52,224 KB
testcase_16 AC 63 ms
30,464 KB
testcase_17 AC 63 ms
30,464 KB
testcase_18 AC 61 ms
30,592 KB
testcase_19 AC 61 ms
30,848 KB
testcase_20 AC 118 ms
51,712 KB
testcase_21 AC 116 ms
51,328 KB
testcase_22 AC 110 ms
49,256 KB
testcase_23 AC 111 ms
49,280 KB
testcase_24 AC 112 ms
49,256 KB
testcase_25 AC 119 ms
52,724 KB
testcase_26 AC 121 ms
209,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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 #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (h, w) = (c[0], c[1]);
        var map = NArr(h);
        var dp = new long[2][][];
        for (var i = 0; i < 2; ++i)
        {
            dp[i] = new long[h][];
            for (var j = 0; j < h; ++j) dp[i][j] = Enumerable.Repeat(long.MinValue, w).ToArray();
        }
        dp[0][0][0] = map[0][0];
        for (var i = 0; i < h; ++i) for (var j = 0; j < w; ++j)
        {
            if (i + 1 < h)
            {
                if (dp[0][i][j] > map[i + 1][j]) dp[0][i + 1][j] = Math.Max(dp[0][i + 1][j], dp[0][i][j] + map[i + 1][j]);
                else dp[1][i + 1][j] = Math.Max(dp[1][i + 1][j], dp[0][i][j]);
                if (dp[1][i][j] > map[i + 1][j]) dp[1][i + 1][j] = Math.Max(dp[1][i + 1][j], dp[1][i][j] + map[i + 1][j]);
            }
            if (j + 1 < w)
            {
                if (dp[0][i][j] > map[i][j + 1]) dp[0][i][j + 1] = Math.Max(dp[0][i][j + 1], dp[0][i][j] + map[i][j + 1]);
                else dp[1][i][j + 1] = Math.Max(dp[1][i][j + 1], dp[0][i][j]);
                if (dp[1][i][j] > map[i][j + 1]) dp[1][i][j + 1] = Math.Max(dp[1][i][j + 1], dp[1][i][j] + map[i][j + 1]);
            }
        }
        WriteLine(Math.Max(dp[0][h - 1][w - 1], dp[1][h - 1][w - 1]) > map[h - 1][w - 1] ? "Yes" : "No");
    }
}
0