結果
問題 | No.168 ものさし |
ユーザー | zerokugi |
提出日時 | 2015-03-19 23:57:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,212 bytes |
コンパイル時間 | 1,935 ms |
コンパイル使用メモリ | 114,616 KB |
実行使用メモリ | 11,640 KB |
最終ジャッジ日時 | 2024-06-28 23:27:58 |
合計ジャッジ時間 | 2,339 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
5,488 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 14 ms
5,376 KB |
testcase_12 | AC | 45 ms
11,512 KB |
testcase_13 | AC | 63 ms
11,512 KB |
testcase_14 | AC | 62 ms
11,512 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 60 ms
11,400 KB |
testcase_20 | AC | 61 ms
11,640 KB |
testcase_21 | AC | 63 ms
11,512 KB |
testcase_22 | AC | 64 ms
11,512 KB |
ソースコード
#include <cstdio> #include <cmath> #include <cstring> #include <cstdlib> #include <climits> #include <ctime> #include <queue> #include <stack> #include <algorithm> #include <list> #include <vector> #include <set> #include <map> #include <iostream> #include <deque> #include <complex> #include <string> #include <iomanip> #include <sstream> #include <bitset> #include <valarray> #include <unordered_map> #include <iterator> #include <functional> #include <cassert> using namespace std; typedef long long int ll; typedef unsigned int uint; typedef unsigned char uchar; typedef unsigned long long ull; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef vector<int> vi; #define REP(i,x) for(int i=0;i<(int)(x);i++) #define REPS(i,x) for(int i=1;i<=(int)(x);i++) #define RREP(i,x) for(int i=((int)(x)-1);i>=0;i--) #define RREPS(i,x) for(int i=((int)(x));i>0;i--) #define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();i++) #define RFOR(i,c) for(__typeof((c).rbegin())i=(c).rbegin();i!=(c).rend();i++) #define ALL(container) (container).begin(), (container).end() #define RALL(container) (container).rbegin(), (container).rend() #define SZ(container) ((int)container.size()) #define mp(a,b) make_pair(a, b) #define pb push_back #define eb emplace_back #define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() ); template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } template<class T> ostream& operator<<(ostream &os, const vector<T> &t) { os<<"["; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"]"; return os; } template<class T> ostream& operator<<(ostream &os, const set<T> &t) { os<<"{"; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"}"; return os; } template<class S, class T> ostream& operator<<(ostream &os, const pair<S,T> &t) { return os<<"("<<t.first<<","<<t.second<<")";} template<class S, class T> pair<S,T> operator+(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first+t.first, s.second+t.second);} template<class S, class T> pair<S,T> operator-(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first-t.first, s.second-t.second);} const int INF = 1<<28; const double EPS = 1e-8; const int MOD = 1000000007; struct UnionFind { vector<int> d; UnionFind(int n=0) : d(n, -1){} bool unite(int x, int y) { if ((x = root(x)) != (y = root(y))){ if (d[y] < d[x]) swap(x, y); d[x] += d[y]; d[y] = x; } return x != y; } bool find(int x, int y){return root(x) == root(y);} int root(int x){return d[x] < 0 ? x : d[x] = root(d[x]);} int size(int x=-1) {return x<0 ? d.size() : -d[root(x)];} }; int n; int main(int argc, char *argv[]){ ios::sync_with_stdio(false); cin >> n; vector<ll> x(n); vector<ll> y(n); REP(i, n){ cin >> x[i] >> y[i]; } vector<pair<ll, pii>> e; REP(i, n)REP(j, i){ e.eb((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]), mp(i, j)); } sort(ALL(e)); UnionFind uf(n); REP(i, e.size()){ uf.unite(e[i].second.second, e[i].second.first); if(uf.find(0, n-1)){ printf("%d\n", (int)ceill(.1*sqrtl(e[i].first))*10); return 0; } } return 0; }