結果
問題 | No.168 ものさし |
ユーザー | uenoku |
提出日時 | 2017-01-24 23:42:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,494 bytes |
コンパイル時間 | 763 ms |
コンパイル使用メモリ | 87,332 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 11:10:09 |
合計ジャッジ時間 | 2,468 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 6 ms
5,376 KB |
testcase_11 | AC | 34 ms
5,376 KB |
testcase_12 | AC | 108 ms
5,376 KB |
testcase_13 | AC | 152 ms
5,376 KB |
testcase_14 | AC | 152 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 7 ms
5,376 KB |
testcase_19 | AC | 100 ms
5,376 KB |
testcase_20 | AC | 105 ms
5,376 KB |
testcase_21 | AC | 107 ms
5,376 KB |
testcase_22 | AC | 103 ms
5,376 KB |
ソースコード
#include "math.h" #include <algorithm> #include <complex> #include <cstdio> #include <iomanip> #include <iostream> #include <queue> #include <string> #include <vector> #define ifor(i, a, b) for (int i = (a); i < (b); i++) #define rfor(i, a, b) for (int i = (b)-1; i >= (a); i--) #define rep(i, n) for (int i = 0; i < (n); i++) #define rrep(i, n) for (int i = (n)-1; i >= 0; i--) #define SIZE 200005 #define UF_MAX 100005 using namespace std; typedef long double ld; typedef long long int lli; const double eps = 1e-11; int vex[4] = {1, 0, -1, 0}; int vey[4] = {0, 1, 0, -1}; lli MOD = 1000000007; #define UF_MAX 100005 struct UFind { int par[UF_MAX]; int rank[UF_MAX]; int count[UF_MAX]; UFind(int n) { rep(i, n) { par[i] = i; rank[i] = 0; count[i] = 1; } } int find(int x) { if (par[x] == x) { return x; } else { return par[x] = find(par[x]); } } void unite(int x, int y) { x = find(x); y = find(y); if (x == y) return; if (rank[x] < rank[y]) { par[x] = y; count[y] += count[x]; } else { par[y] = x; count[x] += count[y]; if (rank[x] == rank[y]) rank[x]++; } } bool same(int x, int y) { return find(x) == find(y); } }; struct edge { lli f, t, len; }; lli n2(lli x1, lli x2, lli y1, lli y2) { return (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2); } int main() { int n; cin >> n; lli a, b; unsigned long long int up = 1e19; unsigned long long int low = 0; lli x[1005], y[1005]; rep(i, n) { cin >> x[i] >> y[i]; } while (up - low > 1) { lli mid = (up + low) / 2; //cout << mid << endl; UFind uf(n); rep(i, n) rep(j, n) { if (n2(x[i], x[j], y[i], y[j]) <= mid) { uf.unite(i, j); } } bool flag = uf.same(0, n - 1); if (flag) { up = mid; } else { low = mid; } } unsigned long long int u = 1e19; unsigned long long int l = 0; while (u - l > 1) { unsigned long long int mid = (u + l) / 2; if (mid * mid >= up) { u = mid; } else { l = mid; } } if (u % 10) u = u + 10 - u % 10; cout << u << endl; }