結果

問題 No.2897 2集合間距離
ユーザー ks2mks2m
提出日時 2024-09-20 22:28:09
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,316 bytes
コンパイル時間 7,315 ms
コンパイル使用メモリ 78,316 KB
実行使用メモリ 83,164 KB
最終ジャッジ日時 2024-09-20 22:28:40
合計ジャッジ時間 12,081 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
57,212 KB
testcase_01 AC 58 ms
50,348 KB
testcase_02 AC 61 ms
50,228 KB
testcase_03 AC 59 ms
50,308 KB
testcase_04 AC 59 ms
49,960 KB
testcase_05 AC 61 ms
50,272 KB
testcase_06 AC 61 ms
50,012 KB
testcase_07 AC 76 ms
50,268 KB
testcase_08 AC 63 ms
50,268 KB
testcase_09 AC 64 ms
50,336 KB
testcase_10 AC 119 ms
54,316 KB
testcase_11 AC 123 ms
54,516 KB
testcase_12 AC 195 ms
55,756 KB
testcase_13 AC 193 ms
55,764 KB
testcase_14 AC 548 ms
56,104 KB
testcase_15 AC 1,040 ms
56,356 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
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];
			for (int j = 0; j < 1000; j++) {
				TreeSet<Integer> set = list.get(j);
				Integer e = set.floor(yi);
				if (e != null) {
					ans = Math.min(ans, Math.abs(xi - j) + yi - e);
				}
				e = set.ceiling(yi);
				if (e != null) {
					ans = Math.min(ans, Math.abs(xi - j) + e - yi);
				}
			}
		}
		System.out.println(ans);
	}
}
0