結果
問題 | No.96 圏外です。 |
ユーザー | ciel |
提出日時 | 2014-12-07 22:03:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,230 bytes |
コンパイル時間 | 902 ms |
コンパイル使用メモリ | 69,796 KB |
実行使用メモリ | 16,512 KB |
最終ジャッジ日時 | 2024-06-11 17:40:00 |
合計ジャッジ時間 | 9,243 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 6 ms
6,940 KB |
testcase_07 | AC | 8 ms
6,940 KB |
testcase_08 | AC | 12 ms
6,940 KB |
testcase_09 | AC | 16 ms
6,944 KB |
testcase_10 | AC | 23 ms
6,940 KB |
testcase_11 | AC | 27 ms
6,944 KB |
testcase_12 | AC | 36 ms
8,064 KB |
testcase_13 | AC | 67 ms
6,940 KB |
testcase_14 | AC | 58 ms
9,600 KB |
testcase_15 | AC | 509 ms
7,296 KB |
testcase_16 | AC | 93 ms
12,032 KB |
testcase_17 | AC | 109 ms
16,512 KB |
testcase_18 | AC | 122 ms
13,440 KB |
testcase_19 | AC | 122 ms
13,440 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:28:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 28 | scanf("%d",&N); | ~~~~~^~~~~~~~~ main.cpp:34:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 34 | for(int i=0;i<N;i++)scanf("%d%d",&v[i].first,&v[i].second); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <vector> #include <map> #include <algorithm> #include <cstdio> #include <cmath> using namespace std; class union_find{ int *parent,n; public: int root(int a){return parent[a]==a?a:(parent[a]=root(parent[a]));} union_find(int _n){ n=_n; parent=new int[n]; for(int i=0;i<n;i++)parent[i]=i; } ~union_find(){delete []parent;} int unite(int a,int b){ int x=root(a),y=root(b);if(x==y)return 0; parent[y]=x; return 1; } }; #define Z(a,b) ((a).first-(b).first)*((a).first-(b).first) + ((a).second-(b).second)*((a).second-(b).second) int main(){ int N; scanf("%d",&N); if(N==0){ puts("1"); return 0; } vector<pair<int,int> >v(N); for(int i=0;i<N;i++)scanf("%d%d",&v[i].first,&v[i].second); sort(v.begin(),v.end()); union_find uf(N); for(int i=0;i<N-1;i++){ int upper=upper_bound(v.begin(),v.end(),make_pair(v[i].first+10,9999999))-v.begin(); for(int j=i+1;j<upper;j++){ if(Z(v[i],v[j])<=100)uf.unite(i,j); } } int result=0; map<int,vector<int> >z; for(int i=0;i<N;i++){ int r=uf.root(i); z[r].push_back(i); for(int j=0;j<z[r].size()-1;j++){ result=max(result,Z(v[z[r][j]],v[i])); } } printf("%.9f\n",sqrt(result)+2); }