結果

問題 No.94 圏外です。(EASY)
ユーザー kuuso1kuuso1
提出日時 2014-12-07 21:12:01
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,664 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 113,912 KB
実行使用メモリ 37,424 KB
最終ジャッジ日時 2024-06-11 17:17:51
合計ジャッジ時間 46,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
27,020 KB
testcase_01 AC 25 ms
22,964 KB
testcase_02 AC 25 ms
24,920 KB
testcase_03 WA -
testcase_04 AC 31 ms
26,708 KB
testcase_05 AC 55 ms
22,960 KB
testcase_06 AC 154 ms
26,904 KB
testcase_07 AC 436 ms
26,896 KB
testcase_08 AC 1,251 ms
27,020 KB
testcase_09 AC 3,797 ms
35,760 KB
testcase_10 AC 3,848 ms
35,764 KB
testcase_11 AC 3,992 ms
33,724 KB
testcase_12 AC 3,813 ms
35,904 KB
testcase_13 AC 3,933 ms
35,772 KB
testcase_14 AC 3,842 ms
35,884 KB
testcase_15 AC 3,854 ms
33,840 KB
testcase_16 AC 3,817 ms
36,012 KB
testcase_17 AC 3,798 ms
34,100 KB
testcase_18 AC 3,889 ms
36,020 KB
testcase_19 AC 3,890 ms
37,424 KB
testcase_20 AC 24 ms
24,748 KB
testcase_21 AC 25 ms
27,092 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
 
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		int INF=N*2;
		
		int[][] WF=new int[N][];
		for(int i=0;i<N;i++){
			WF[i]=new int[N];
			for(int j=0;j<N;j++){
				WF[i][j]=(X[i]-X[j])*(X[i]-X[j])+(Y[i]-Y[j])*(Y[i]-Y[j])<=100?1:INF;
			}
			WF[i][i]=0;
		}
		
		for(int k=0;k<N;k++){
			for(int i=0;i<N;i++){
				for(int j=i+1;j<N;j++){
					WF[i][j]=WF[j][i]=Math.Min(WF[i][j],WF[i][k]+WF[k][j]);
				}
			}
		}
		
		List<int> D=new List<int>();
		for(int i=0;i<N;i++){
			for(int j=i+1;j<N;j++){
				if(WF[i][j]!=INF)D.Add((X[i]-X[j])*(X[i]-X[j])+(Y[i]-Y[j])*(Y[i]-Y[j]));
			}
		}
		
		int max=0;
		for(int i=0;i<D.Count;i++){
			max=Math.Max(max,D[i]);
		}
		Console.WriteLine(2+Math.Sqrt(max));
		
		
	}
	int N;
	int[] X;
	int[] Y;
	public Sol(){
		N=ri();
		X=new int[N];
		Y=new int[N];
		for(int i=0;i<N;i++){
			var d=ria();
			X[i]=d[0];Y[i]=d[1];
		}
	}




	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(){return Console.ReadLine().Split(' ');}
	static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));}
	static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));}
	static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));}
}
0