結果
問題 | No.168 ものさし |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-08-30 21:43:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 111 ms / 2,000 ms |
コード長 | 1,721 bytes |
コンパイル時間 | 633 ms |
コンパイル使用メモリ | 65,620 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-06-06 15:05:47 |
合計ジャッジ時間 | 1,838 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
7,296 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 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 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 26 ms
6,912 KB |
testcase_12 | AC | 82 ms
10,240 KB |
testcase_13 | AC | 110 ms
11,392 KB |
testcase_14 | AC | 111 ms
11,520 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 6 ms
5,376 KB |
testcase_19 | AC | 58 ms
11,392 KB |
testcase_20 | AC | 61 ms
11,520 KB |
testcase_21 | AC | 62 ms
11,520 KB |
testcase_22 | AC | 60 ms
11,520 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <cstdio> typedef long long ll; using namespace std; #define rep(i,n) for(int i=0;i<(n);i++) int n; ll X[1010], Y[1010]; ll d[1010][1010]; class DisjointSet{ public: vector<int> rank, p;//rank:木の高さ p:親の頂点番号 DisjointSet(){} DisjointSet(int size){//頂点の数 rank.resize(size, 0); p.resize(size, 0); rep(i, size) 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]){ p[x] = findSet(p[x]); } return p[x]; } }; bool solve(ll len){ DisjointSet ds = DisjointSet(n); rep(i, n)rep(j, n){ if(d[i][j] <= len * len){ ds.unite(i, j); } } return ds.same(0, n - 1); } int main(void){ cin >> n; rep(i, n) cin >> X[i] >> Y[i]; rep(i, n)rep(j, n){ d[i][j] = (X[i] - X[j]) * (X[i] - X[j]) + (Y[i] - Y[j]) * (Y[i] - Y[j]); } ll left = 0, right = 1e10; while(right - left > 1){ ll mid = (left + right) / 2; if(solve(mid)){ right = mid; }else{ left = mid + 1; } } // printf("%lld %lld\n", left, right); ll ans = left; for (int i = 0; i <= 11; ++i){ if(ans % 10 == 0){ if(solve(ans)) break; } ans++; } printf("%lld\n", ans); return 0; }