結果

問題 No.2897 2集合間距離
ユーザー ks2mks2m
提出日時 2024-09-20 22:54:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 629 ms / 3,500 ms
コード長 1,526 bytes
コンパイル時間 2,732 ms
コンパイル使用メモリ 78,464 KB
実行使用メモリ 68,924 KB
最終ジャッジ日時 2024-09-20 22:54:14
合計ジャッジ時間 10,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
44,496 KB
testcase_01 AC 55 ms
44,572 KB
testcase_02 AC 67 ms
44,128 KB
testcase_03 AC 94 ms
45,936 KB
testcase_04 AC 151 ms
48,992 KB
testcase_05 AC 144 ms
48,632 KB
testcase_06 AC 94 ms
46,112 KB
testcase_07 AC 99 ms
46,228 KB
testcase_08 AC 96 ms
45,788 KB
testcase_09 AC 89 ms
46,032 KB
testcase_10 AC 98 ms
46,328 KB
testcase_11 AC 66 ms
44,848 KB
testcase_12 AC 99 ms
45,396 KB
testcase_13 AC 122 ms
45,840 KB
testcase_14 AC 162 ms
48,232 KB
testcase_15 AC 178 ms
49,372 KB
testcase_16 AC 611 ms
68,924 KB
testcase_17 AC 629 ms
64,228 KB
testcase_18 AC 589 ms
67,864 KB
testcase_19 AC 621 ms
64,412 KB
testcase_20 AC 600 ms
63,624 KB
testcase_21 AC 585 ms
63,168 KB
testcase_22 AC 564 ms
58,892 KB
testcase_23 AC 560 ms
58,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.Queue;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		int mx = 1000;
		int[][] d = new int[mx][mx];
		Queue<Integer> que = new ArrayDeque<>();
		for (int i = 0; i < n; i++) {
			String[] sa = br.readLine().split(" ");
			int x = Integer.parseInt(sa[0]);
			int y = Integer.parseInt(sa[1]);
			d[x][y] = 1;
			que.add(x * mx + y);
		}

		boolean[][] g = new boolean[mx][mx];
		int m = Integer.parseInt(br.readLine());
		for (int i = 0; i < m; i++) {
			String[] sa = br.readLine().split(" ");
			int z = Integer.parseInt(sa[0]);
			int w = Integer.parseInt(sa[1]);
			g[z][w] = true;
		}
		br.close();

		int[] dx = {1, 0, -1, 0};
		int[] dy = {0, 1, 0, -1};
		while (!que.isEmpty()) {
			int cur = que.poll();
			int cx = cur / mx;
			int cy = cur % mx;
			if (g[cx][cy]) {
				System.out.println(d[cx][cy] - 1);
				return;
			}
			for (int i = 0; i < 4; i++) {
				int nx = cx + dx[i];
				int ny = cy + dy[i];
				if (nx < 0 || mx <= nx || ny < 0 || mx <= ny) {
					// g[nx][ny] == '#' みたいな条件もあれば
					continue;
				}
				int next = nx * mx + ny;
				if (d[nx][ny] == 0) {
					que.add(next);
					d[nx][ny] = d[cx][cy] + 1;
//					if (g[nx][ny]) {
//						System.out.println(d[nx][ny] - 1);
//						return;
//					}
				}
			}
		}
	}
}
0