結果
問題 | No.94 圏外です。(EASY) |
ユーザー | kotatsugame |
提出日時 | 2020-02-27 19:37:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 976 bytes |
コンパイル時間 | 682 ms |
コンパイル使用メモリ | 82,104 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 15:59:51 |
合計ジャッジ時間 | 1,649 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 4 ms
6,816 KB |
testcase_09 | AC | 9 ms
6,816 KB |
testcase_10 | AC | 9 ms
6,816 KB |
testcase_11 | AC | 8 ms
6,816 KB |
testcase_12 | AC | 9 ms
6,820 KB |
testcase_13 | AC | 8 ms
6,816 KB |
testcase_14 | AC | 9 ms
6,816 KB |
testcase_15 | AC | 9 ms
6,816 KB |
testcase_16 | AC | 10 ms
6,816 KB |
testcase_17 | AC | 9 ms
6,820 KB |
testcase_18 | AC | 9 ms
6,820 KB |
testcase_19 | AC | 16 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,816 KB |
コンパイルメッセージ
main.cpp:35:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 35 | main() | ^~~~
ソースコード
#include<iostream> #include<iomanip> #include<cmath> using namespace std; #include<vector> struct UF{ int n; vector<int>parent,rank; UF(int n_=0):n(n_),parent(n_),rank(n_,1) { for(int i=0;i<n_;i++)parent[i]=i; } int find(int a){return parent[a]!=a?parent[a]=find(parent[a]):a;} bool same(int a,int b){return find(a)==find(b);} bool unite(int a,int b) { a=find(a),b=find(b); if(a==b)return false; if(rank[a]<rank[b]) { parent[a]=b; rank[b]+=rank[a]; } else { parent[b]=a; rank[a]+=rank[b]; } return true; } int size(int a){return rank[find(a)];} }; int N; int x[1000],y[1000]; main() { cin>>N; for(int i=0;i<N;i++)cin>>x[i]>>y[i]; UF uf(N); for(int i=0;i<N;i++)for(int j=0;j<N;j++) { if((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j])<=100)uf.unite(i,j); } double ans=0; for(int i=0;i<N;i++)for(int j=0;j<N;j++) { if(uf.same(i,j))ans=max(ans,hypot(x[i]-x[j],y[i]-y[j])); } cout<<fixed<<setprecision(16)<<ans+2<<endl; }