結果

問題 No.1588 Connection
ユーザー ks2mks2m
提出日時 2021-07-08 22:50:25
言語 Java
(openjdk 23)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 1,087 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 79,980 KB
実行使用メモリ 75,484 KB
平均クエリ数 551.19
最終ジャッジ日時 2024-07-17 11:41:21
合計ジャッジ時間 12,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Queue;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();

		int[] dx = {1, 0, -1, 0};
		int[] dy = {0, 1, 0, -1};

		int[][] d = new int[n][n];
		d[0][0] = 1;
		d[n - 1][n - 1] = 1;
		Queue<Integer> que = new ArrayDeque<>();
		que.add(0);
		while (!que.isEmpty()) {
			int cur = que.poll();
			int cx = cur / n;
			int cy = cur % n;
			for (int i = 0; i < 4; i++) {
				int nx = cx + dx[i];
				int ny = cy + dy[i];
				if (nx < 0 || n <= nx || ny < 0 || n <= ny) {
					continue;
				}
				if (nx == n - 1 && ny == n - 1) {
					System.out.println("Yes");
					return;
				}
				if (d[nx][ny] == 0) {
					System.out.println((nx + 1) + " " + (ny + 1));
					String t = sc.next();
					if (t.equals("-1")) {
						return;
					} else if (t.equals("Black")) {
						d[nx][ny] = 1;
						que.add(nx * n + ny);
					} else {
						d[nx][ny] = 2;
					}
				}
			}
		}
		System.out.println("No");
	}
}
0