結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー kakel-sankakel-san
提出日時 2024-02-04 15:35:04
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 335 ms / 3,000 ms
コード長 1,786 bytes
コンパイル時間 7,755 ms
コンパイル使用メモリ 168,288 KB
実行使用メモリ 204,148 KB
最終ジャッジ日時 2024-09-28 11:18:33
合計ジャッジ時間 12,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,720 KB
testcase_01 AC 60 ms
30,720 KB
testcase_02 AC 60 ms
30,720 KB
testcase_03 AC 60 ms
30,976 KB
testcase_04 AC 59 ms
30,848 KB
testcase_05 AC 61 ms
30,720 KB
testcase_06 AC 60 ms
30,592 KB
testcase_07 AC 243 ms
45,056 KB
testcase_08 AC 105 ms
51,072 KB
testcase_09 AC 152 ms
56,576 KB
testcase_10 AC 154 ms
56,448 KB
testcase_11 AC 153 ms
54,400 KB
testcase_12 AC 149 ms
51,712 KB
testcase_13 AC 142 ms
45,696 KB
testcase_14 AC 132 ms
51,328 KB
testcase_15 AC 136 ms
51,448 KB
testcase_16 AC 92 ms
42,880 KB
testcase_17 AC 335 ms
47,872 KB
testcase_18 AC 91 ms
42,880 KB
testcase_19 AC 59 ms
30,592 KB
testcase_20 AC 59 ms
30,592 KB
testcase_21 AC 59 ms
30,848 KB
testcase_22 AC 207 ms
44,800 KB
testcase_23 AC 59 ms
30,592 KB
testcase_24 AC 119 ms
44,032 KB
testcase_25 AC 262 ms
204,148 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 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, x, y) = (c[0], c[1], c[2], c[3]);
        --x;
        --y;
        var map = NArr(h);
        var mx = new int[] { -1, 0, 1, 0 };
        var my = new int[] { 0, 1, 0, -1 };
        var val = (long)map[x][y];
        var added = new bool[h, w];
        added[x, y] = true;
        var q = new PriorityQueue<(int x, int y), int>();
        for (var d = 0; d < 4; ++d)
        {
            var nx = x + mx[d];
            var ny = y + my[d];
            if (nx < 0 || nx >= h || ny < 0 || ny >= w) continue;
            if (added[nx, ny]) continue;
            q.Enqueue((nx, ny), map[nx][ny]);
            added[nx, ny] = true;
        }
        while (q.Count > 0)
        {
            var cur = q.Dequeue();
            if (val <= map[cur.x][cur.y])
            {
                WriteLine("No");
                return;
            }
            val += map[cur.x][cur.y];
            for (var d = 0; d < 4; ++d)
            {
                var nx = cur.x + mx[d];
                var ny = cur.y + my[d];
                if (nx < 0 || nx >= h || ny < 0 || ny >= w) continue;
                if (added[nx, ny]) continue;
                q.Enqueue((nx, ny), map[nx][ny]);
                added[nx, ny] = true;
            }
        }
        WriteLine("Yes");
    }
}
0