結果
問題 | No.168 ものさし |
ユーザー | recososo |
提出日時 | 2020-03-05 16:29:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,041 bytes |
コンパイル時間 | 1,860 ms |
コンパイル使用メモリ | 176,180 KB |
実行使用メモリ | 19,968 KB |
最終ジャッジ日時 | 2024-10-14 01:19:12 |
合計ジャッジ時間 | 3,686 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 5 ms
5,248 KB |
testcase_11 | AC | 24 ms
7,652 KB |
testcase_12 | AC | 81 ms
19,960 KB |
testcase_13 | AC | 115 ms
19,968 KB |
testcase_14 | AC | 114 ms
19,964 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; const int nmax=1005; int par[nmax],siz[nmax]; void init(int x){ for(int i=0;i<x;i++){ par[i]=i; siz[i]=1; } } int root(int x){ if(par[x]==x){ return x; } return par[x]=root(par[x]); } void unite(int x,int y){ x=root(x); y=root(y); if(x==y){ return ; } par[y]=x; siz[x]+=siz[y]; } typedef long double ld; ld x[nmax],y[nmax]; ld dis(int i,int j){ return sqrt((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j])); } int main(){ int n;cin >> n; init(n); for(int i=0;i<n;i++){ cin >> x[i] >> y[i]; } vector<pair<ld,pair<int,int>>> c; for(int i=0;i<n;i++){ for(int j=i+1;j<n;j++){ c.push_back({dis(i,j),{i,j}}); } } sort(c.begin(),c.end()); for(int i=0;i<c.size();i++){ unite(c[i].second.first,c[i].second.second); if(root(0)==root(n-1)){ cout << ceil(c[i].first/(double)10)*10 << endl; return 0; } } }