結果

問題 No.1588 Connection
ユーザー kakel-sankakel-san
提出日時 2024-02-13 23:53:26
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,538 bytes
コンパイル時間 7,978 ms
コンパイル使用メモリ 167,544 KB
実行使用メモリ 48,344 KB
平均クエリ数 471.19
最終ジャッジ日時 2024-09-28 18:41:18
合計ジャッジ時間 11,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
46,680 KB
testcase_01 AC 76 ms
46,808 KB
testcase_02 AC 76 ms
46,808 KB
testcase_03 AC 73 ms
46,680 KB
testcase_04 AC 78 ms
46,424 KB
testcase_05 AC 75 ms
46,808 KB
testcase_06 AC 76 ms
47,064 KB
testcase_07 AC 77 ms
46,552 KB
testcase_08 AC 77 ms
47,064 KB
testcase_09 AC 76 ms
46,808 KB
testcase_10 AC 77 ms
46,808 KB
testcase_11 AC 80 ms
47,064 KB
testcase_12 AC 104 ms
46,784 KB
testcase_13 AC 101 ms
47,176 KB
testcase_14 AC 73 ms
47,152 KB
testcase_15 AC 73 ms
46,936 KB
testcase_16 AC 72 ms
46,808 KB
testcase_17 AC 75 ms
46,680 KB
testcase_18 AC 76 ms
46,928 KB
testcase_19 AC 75 ms
47,320 KB
testcase_20 AC 75 ms
47,704 KB
testcase_21 AC 147 ms
48,344 KB
testcase_22 AC 137 ms
47,696 KB
testcase_23 AC 100 ms
46,936 KB
testcase_24 AC 87 ms
46,920 KB
testcase_25 AC 115 ms
47,960 KB
testcase_26 AC 113 ms
47,448 KB
testcase_27 AC 91 ms
46,936 KB
testcase_28 AC 85 ms
46,296 KB
testcase_29 AC 147 ms
46,808 KB
testcase_30 AC 112 ms
46,808 KB
testcase_31 AC 73 ms
46,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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;
        n = c[0];
        var map = new int[n][];
        for (var i = 0; i < n; ++i) map[i] = new int[n];
        map[0][0] = 1;
        map[n-1][n-1] = 1;
        WriteLine(DFS(0, 0, map) ? "Yes" : "No");
    }
    static int n;
    static int[][] move = new int[][] { new int[] { -1, 0 }, new int[] { 1, 0 }, new int[] { 0, -1 }, new int[] { 0, 1 } };
    static bool DFS(int i, int j, int[][] map)
    {
        if (i + 1 == n && j + 1 == n) return true;
        foreach (var m in move)
        {
            var ni = i + m[0];
            var nj = j + m[1];
            if (ni < 0 || ni >= n || nj < 0 || nj >= n) continue;
            if (map[ni][nj] == 0)
            {
                WriteLine($"{ni + 1} {nj + 1}");
                var s = ReadLine();
                if (s == "Black") map[ni][nj] = 1;
                else map[ni][nj] = 2;
            }
            if (map[ni][nj] == 1)
            {
                map[ni][nj] = 3;
                if (DFS(ni, nj, map)) return true;
            }
        }
        return false;
    }
}
0