結果

問題 No.94 圏外です。(EASY)
ユーザー 37zigen37zigen
提出日時 2016-03-25 01:57:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,208 bytes
コンパイル時間 2,531 ms
コンパイル使用メモリ 78,000 KB
実行使用メモリ 50,476 KB
最終ジャッジ日時 2024-10-02 00:40:28
合計ジャッジ時間 9,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,420 KB
testcase_01 WA -
testcase_02 AC 114 ms
40,680 KB
testcase_03 AC 108 ms
40,036 KB
testcase_04 AC 207 ms
44,260 KB
testcase_05 AC 216 ms
44,680 KB
testcase_06 AC 235 ms
45,964 KB
testcase_07 AC 286 ms
47,160 KB
testcase_08 AC 316 ms
47,892 KB
testcase_09 AC 369 ms
49,784 KB
testcase_10 AC 322 ms
48,044 KB
testcase_11 AC 358 ms
49,208 KB
testcase_12 AC 349 ms
50,372 KB
testcase_13 AC 354 ms
50,476 KB
testcase_14 AC 344 ms
49,044 KB
testcase_15 AC 354 ms
49,252 KB
testcase_16 AC 348 ms
48,112 KB
testcase_17 AC 354 ms
48,600 KB
testcase_18 AC 364 ms
48,952 KB
testcase_19 AC 334 ms
48,432 KB
testcase_20 AC 140 ms
41,936 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder094;

import java.util.Arrays;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		double[] x=new double[n];
		double[] y=new double[n];
		UnionFind uni=new UnionFind(n);
		for(int i=0;i<n;i++){
			x[i]=sc.nextDouble();
			y[i]=sc.nextDouble();
		}

		for(int i=0;i<n;i++){
			for(int j=0;j<n;j++){
				if(i==j)continue;
				if((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j])<=100){
					uni.setUnion(i, j);	
				}
			}
		}
		double max=0;
		for(int i=0;i<n;i++){
			for(int j=0;j<n;j++){
				if(i==j)continue;
				if(uni.root(i)==uni.root(j)){
					max=Math.max(max,(x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]));
				}
			}
		}
		if(max==0){
			System.out.println(1);
			return;
		}else{
			System.out.println(Math.sqrt(max)+2);
		}


	}
	static class UnionFind{
		int[] f;
		UnionFind(int size){
			f=new int[size];
			Arrays.fill(f, -1);
		}
		boolean setUnion(int x,int y){
			x=root(x);
			y=root(y);
			if(x!=y){
				if(f[x]>f[y]){
					int d=x;
					x=y;
					y=d;
				}
				f[x]+=f[y];
				f[y]=x;
			}
			return x!=y;
		}
		int root(int x){
			return f[x]<0?x:root(f[x]);
		}

	}
}

0