結果

問題 No.2897 2集合間距離
ユーザー ks2mks2m
提出日時 2024-09-20 22:31:48
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,399 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 79,124 KB
実行使用メモリ 82,572 KB
最終ジャッジ日時 2024-09-20 22:32:06
合計ジャッジ時間 17,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,336 KB
testcase_01 AC 56 ms
50,340 KB
testcase_02 AC 55 ms
50,240 KB
testcase_03 AC 57 ms
50,300 KB
testcase_04 AC 57 ms
49,940 KB
testcase_05 AC 59 ms
50,236 KB
testcase_06 AC 58 ms
50,344 KB
testcase_07 AC 57 ms
49,984 KB
testcase_08 AC 58 ms
50,392 KB
testcase_09 AC 56 ms
49,868 KB
testcase_10 AC 68 ms
50,100 KB
testcase_11 AC 65 ms
50,396 KB
testcase_12 AC 101 ms
51,464 KB
testcase_13 AC 118 ms
51,656 KB
testcase_14 AC 173 ms
55,332 KB
testcase_15 AC 221 ms
55,572 KB
testcase_16 AC 1,238 ms
71,852 KB
testcase_17 AC 1,223 ms
74,008 KB
testcase_18 AC 1,234 ms
74,220 KB
testcase_19 AC 1,273 ms
74,084 KB
testcase_20 AC 1,285 ms
74,372 KB
testcase_21 AC 1,371 ms
73,756 KB
testcase_22 TLE -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.TreeSet;

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[] x = new int[n];
		int[] y = new int[n];
		for (int i = 0; i < n; i++) {
			String[] sa = br.readLine().split(" ");
			x[i] = Integer.parseInt(sa[0]);
			y[i] = Integer.parseInt(sa[1]);
		}

		List<TreeSet<Integer>> list = new ArrayList<>(1000);
		for (int i = 0; i < 1000; i++) {
			list.add(new TreeSet<>());
		}

		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]);
			list.get(z).add(w);
		}
		br.close();

		int ans = 10000;
		for (int i = 0; i < n; i++) {
			int xi = x[i];
			int yi = y[i];
			int start = Math.max(xi - ans, 0);
			int end = Math.min(xi + ans, 999);
			for (int j = start; j <= end; j++) {
				int xj = Math.abs(xi - j);
				TreeSet<Integer> set = list.get(j);
				Integer e = set.floor(yi);
				if (e != null) {
					ans = Math.min(ans, xj + yi - e);
				}
				e = set.ceiling(yi);
				if (e != null) {
					ans = Math.min(ans, xj + e - yi);
				}
			}
		}
		System.out.println(ans);
	}
}
0