結果
問題 | No.168 ものさし |
ユーザー | kurenai3110 |
提出日時 | 2016-08-30 22:22:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,878 bytes |
コンパイル時間 | 1,143 ms |
コンパイル使用メモリ | 85,300 KB |
実行使用メモリ | 12,952 KB |
最終ジャッジ日時 | 2024-11-14 12:41:30 |
合計ジャッジ時間 | 3,876 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 3 ms
6,820 KB |
testcase_10 | AC | 7 ms
6,816 KB |
testcase_11 | AC | 50 ms
6,820 KB |
testcase_12 | AC | 184 ms
12,680 KB |
testcase_13 | AC | 265 ms
11,632 KB |
testcase_14 | AC | 257 ms
11,728 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 5 ms
6,816 KB |
testcase_18 | AC | 12 ms
6,816 KB |
testcase_19 | AC | 257 ms
12,952 KB |
testcase_20 | AC | 266 ms
12,336 KB |
testcase_21 | AC | 255 ms
11,768 KB |
testcase_22 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <map> #include <algorithm> #include <cmath> using namespace std; #define MAX 2e9; vector<pair<long long, long long> >P; int N; struct UnionFind { vector<int> par; vector<int> sizes; UnionFind(int n) : par(n), sizes(n, 1) { for (int i = 0; i < n; i++) par[i] = i; } int find(int x) { if (x == par[x])return x; return par[x] = find(par[x]); } void unite(int x, int y) { x = find(x); y = find(y); if (x == y) return; if (sizes[x] < sizes[y]) swap(x, y); par[y] = x; sizes[x] += sizes[y]; } bool same(int x, int y) { return find(x) == find(y); } int size(int x) { return sizes[find(x)]; } }; struct Edge { int a, b; long long cost; bool operator<(const Edge& o) const { return cost < o.cost; } }; struct Graph { vector<Edge> es; bool kruskal(int d) { bool flag = true; sort(es.begin(), es.end()); UnionFind uf(N); for (int ei = 0; ei < es.size(); ei++) { Edge& e = es[ei]; if (!uf.same(e.a, e.b)) { if (e.cost > (long long)d*d) { flag = false; break; } uf.unite(e.a, e.b); if (uf.same(0, N - 1)) break; } } return flag; } }; Graph input_graph() { Graph g; for (int i = 0; i < N; i++) { for (int j = i + 1; j < N; j++) { Edge e; e.a = i; e.b = j; e.cost = (P[i].first - P[j].first)*(P[i].first - P[j].first) + (P[i].second - P[j].second)*(P[i].second - P[j].second); g.es.push_back(e); } } return g; } int main() { cin >> N; P.resize(N); for (int i = 0; i < N; i++) { int x, y; cin >> x >> y; P[i] = make_pair(x, y); } Graph g = input_graph(); long long left = 0; long long right = MAX; int mid; while (left < right) { mid = (left + right) / 2; if (g.kruskal(mid)) { right = mid; } else { left = mid+1; } } cout << (int)ceil(mid/10.) * 10 << endl; return 0; }