結果
問題 | No.168 ものさし |
ユーザー | 37zigen |
提出日時 | 2016-03-25 16:30:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 597 ms / 2,000 ms |
コード長 | 1,388 bytes |
コンパイル時間 | 2,111 ms |
コンパイル使用メモリ | 77,280 KB |
実行使用メモリ | 45,020 KB |
最終ジャッジ日時 | 2024-06-06 15:04:37 |
合計ジャッジ時間 | 9,937 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 340 ms
44,020 KB |
testcase_01 | AC | 141 ms
41,076 KB |
testcase_02 | AC | 135 ms
41,492 KB |
testcase_03 | AC | 133 ms
40,948 KB |
testcase_04 | AC | 132 ms
40,876 KB |
testcase_05 | AC | 133 ms
40,856 KB |
testcase_06 | AC | 138 ms
41,132 KB |
testcase_07 | AC | 117 ms
41,352 KB |
testcase_08 | AC | 133 ms
41,012 KB |
testcase_09 | AC | 196 ms
42,700 KB |
testcase_10 | AC | 238 ms
42,968 KB |
testcase_11 | AC | 424 ms
43,896 KB |
testcase_12 | AC | 507 ms
44,040 KB |
testcase_13 | AC | 597 ms
45,020 KB |
testcase_14 | AC | 562 ms
44,984 KB |
testcase_15 | AC | 143 ms
41,552 KB |
testcase_16 | AC | 198 ms
42,740 KB |
testcase_17 | AC | 198 ms
42,324 KB |
testcase_18 | AC | 242 ms
42,900 KB |
testcase_19 | AC | 500 ms
44,824 KB |
testcase_20 | AC | 472 ms
44,684 KB |
testcase_21 | AC | 486 ms
44,632 KB |
testcase_22 | AC | 488 ms
44,596 KB |
ソースコード
package yukicoder168; 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(); long[] x=new long[n]; long[] y=new long[n]; for(int i=0;i<n;i++){ x[i]=sc.nextLong(); y[i]=sc.nextLong(); } long upper=200000000L; long low=0L; while(upper!=low&&upper!=low+1){ // System.err.println("upper "+upper); // System.err.println("low "+low); long mid=(upper+low)/2; DJSet ds=new DJSet(n); for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(i==j)continue; if(Math.abs(x[i]-x[j])<=mid*10L&&Math.abs(y[i]-y[j])<=mid*10L){ long len2=(x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]); if(len2<=mid*mid*100L){ ds.setUnion(i, j); } } } } if(ds.setUnion(0,n-1)==false){ upper=mid; }else{ low=mid; } } System.out.println(upper*10); sc.close(); } public static class DJSet{ int[] f; public DJSet(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]); } int count(){ int cnt=0; for(int d:f){ if(d<0)cnt++; } return cnt; } } }