結果
問題 | No.168 ものさし |
ユーザー | Twizz |
提出日時 | 2017-05-25 00:06:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,411 bytes |
コンパイル時間 | 1,431 ms |
コンパイル使用メモリ | 168,984 KB |
実行使用メモリ | 34,944 KB |
最終ジャッジ日時 | 2024-09-19 18:39:53 |
合計ジャッジ時間 | 4,436 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,376 KB |
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"bits/stdc++.h" //#include<bits/stdc++.h> using namespace std; #define print(x) cout<<x<<endl; #define rep(i,a,b) for(int i=a;i<b;i++) #define REP(i,a) for(int i=0;i<a;i++) typedef long long ll; typedef pair<int, int> PI; typedef pair<int, PI> V; const ll mod = 10000000000; //union-find木実装 int par[100002]; int ran[100002]; //初期化 void init(int n) { rep(i, 0, n) { par[i] = i; ran[i] = 0; } } //木の根を求める int find(int x) { if (par[x] == x) { return x; } else { return par[x] = find(par[x]); } } //xとyの属する集合を併合 void unite(int x, int y) { x = find(x); y = find(y); if (x == y) return; if (ran[x] < ran[y]) { par[x] = y; } else { par[y] = x; if (ran[x] == ran[y])ran[x]++; } } //xとyが同じ集合かどうか bool same(int x, int y) { return find(x) == find(y); } int main() { int n; double x[1002], y[1002]; double ans = 0; map<double,PI> eg; cin >> n; REP(i, n)cin >> x[i] >> y[i]; init(n); REP(i, n)rep(j, i + 1, n) { eg.insert(make_pair(sqrt(pow(x[i] - x[j], 2.0) + pow(y[i] - y[j], 2.0)), make_pair(i, j)));} for (auto itr = eg.begin(); itr != eg.end(); ++itr) { PI e = itr->second; if (!same(e.first, e.second)) { unite(e.first, e.second); double d = itr->first; ans = max(ans, d); } if (same(0, n - 1))break; } while ((int)ans % 10 != 0) { ans += 1; } print(ans); return 0; }