結果

問題 No.168 ものさし
ユーザー GrenacheGrenache
提出日時 2016-05-25 20:07:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 660 ms / 2,000 ms
コード長 2,349 bytes
コンパイル時間 3,427 ms
コンパイル使用メモリ 79,832 KB
実行使用メモリ 67,872 KB
最終ジャッジ日時 2024-06-06 15:04:51
合計ジャッジ時間 11,159 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
51,064 KB
testcase_01 AC 108 ms
40,064 KB
testcase_02 AC 119 ms
41,112 KB
testcase_03 AC 104 ms
40,140 KB
testcase_04 AC 117 ms
41,204 KB
testcase_05 AC 114 ms
41,008 KB
testcase_06 AC 115 ms
40,960 KB
testcase_07 AC 115 ms
41,084 KB
testcase_08 AC 103 ms
39,928 KB
testcase_09 AC 133 ms
41,616 KB
testcase_10 AC 181 ms
42,736 KB
testcase_11 AC 317 ms
48,476 KB
testcase_12 AC 512 ms
59,580 KB
testcase_13 AC 660 ms
67,584 KB
testcase_14 AC 625 ms
67,720 KB
testcase_15 AC 101 ms
40,408 KB
testcase_16 AC 126 ms
40,656 KB
testcase_17 AC 140 ms
42,152 KB
testcase_18 AC 191 ms
43,276 KB
testcase_19 AC 581 ms
67,392 KB
testcase_20 AC 624 ms
67,872 KB
testcase_21 AC 613 ms
67,836 KB
testcase_22 AC 605 ms
67,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main_yukicoder168 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        int[] x = new int[n];
        int[] y = new int[n];
        for (int i = 0; i < n; i++) {
        	x[i] = sc.nextInt();
        	y[i] = sc.nextInt();
        }

        List<Tri> p = new ArrayList<>();
        for (int i = 0; i < n; i++) {
        	for (int j = i + 1; j < n; j++) {
        		long d = (long)(x[i] - x[j]) * (x[i] - x[j]) + (long)(y[i] - y[j]) * (y[i] - y[j]);
        		p.add(new Tri(i, j, d));
        	}
        }
        Collections.sort(p);

        UnionFind uf = new UnionFind(n);
        long min = Long.MAX_VALUE;
        for (Tri e : p) {
        	uf.union(e.i, e.j);
        	if (uf.same(0, n - 1)) {
        		min = e.d;
        		break;
        	}
        }

        long l = 0;
        long r = 200_000_000;
        for (int i = 0; i < 100; i++) {
        	long mid = l + (r - l) / 2;

        	long tmp = (mid * 10) * (mid * 10) - min;
        	if (tmp >= 0) {
        		r = mid;
        	} else {
        		l = mid;
        	}
        }

        System.out.println(r * 10);

        sc.close();
    }

    private static class Tri implements Comparable<Tri> {
    	int i;
    	int j;
    	long d;

    	Tri(int i, int j, long d) {
    		this.i = i;
    		this.j = j;
    		this.d = d;
    	}

		@Override
		public int compareTo(Tri o) {
			return Long.compare(this.d, o.d);
		}
    }

	@SuppressWarnings("unused")
	private static class UnionFind {
		int[] parent;
		int[] rank;

		UnionFind(int n) {
			parent = new int[n];
			rank = new int[n];
			for (int i = 0; i < n; i++) {
				parent[i] = i;
				rank[i] = 0;
			}
		}

		int find(int x) {
			if (parent[x] == x) {
				return x;
			} else {
				return parent[x] = find(parent[x]);
			}
		}

		boolean same(int x, int y) {
			return find(x) == find(y);
		}

		void union(int x, int y) {
			x = find(x);
			y = find(y);
			if (x != y) {
				if (rank[x] > rank[y]) {
					parent[y] = x;
				} else {
					parent[x] = y;
					if (rank[x] == rank[y]) {
						rank[y]++;
					}
				}
			}

			return;
		}

		// 異なる集合の数
		int count() {
			int ret = 0;
			for (int i = 0; i < parent.length; i++) {
				if (find(i) == i) {
					ret++;
				}
			}

			return ret;
		}
	}
}
0