結果
問題 | No.168 ものさし |
ユーザー | face4 |
提出日時 | 2018-10-16 21:19:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,553 bytes |
コンパイル時間 | 894 ms |
コンパイル使用メモリ | 85,400 KB |
実行使用メモリ | 13,004 KB |
最終ジャッジ日時 | 2024-10-12 18:45:30 |
合計ジャッジ時間 | 1,772 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
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<iostream> #include<vector> #include<queue> #include<cmath> using namespace std; class DisjointSet{ public: vector<int> rank, p; DisjointSet(){} DisjointSet(int size){ rank.resize(size, 0); p.resize(size, 0); for(int i = 0; i < size; i++) makeSet(i); } void makeSet(int x){ p[x] = x; rank[x] = 0; } bool same(int x, int y){ return findSet(x) == findSet(y); } void unite(int x, int y){ link(findSet(x), findSet(y)); } void link(int x, int y){ if(rank[x] > rank[y]){ p[y] = x; }else{ p[x] = y; if(rank[x] == rank[y]){ rank[y]++; } } } int findSet(int x){ if(x != p[x]){ // path compression p[x] = findSet(p[x]); } return p[x]; } }; typedef long long ll; int main(){ int n; cin >> n; ll x[n], y[n]; for(int i = 0; i < n; i++) cin >> x[i] >> y[i]; priority_queue<pair<ll, pair<int,int>>> pq; DisjointSet uf(n); for(int i = 0; i < n; i++){ for(int j = i+1; j < n; j++){ pq.push({-((x[j]-x[i])*(x[j]-x[i])+(y[j]-y[i])*(y[j]-y[i])), {i, j}}); } } ll sq = 0; while(!uf.same(0, n-1)){ auto p = pq.top(); pq.pop(); sq = -p.first; uf.unite(p.second.first, p.second.second); } ll ans = (ll)(sqrt(sq))/10*10; //while(ans*ans < sq) ans += 10; cout << ans << endl; return 0; }