結果
問題 | No.96 圏外です。 |
ユーザー | 古寺いろは |
提出日時 | 2015-04-10 22:11:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,717 bytes |
コンパイル時間 | 1,495 ms |
コンパイル使用メモリ | 171,112 KB |
実行使用メモリ | 110,052 KB |
最終ジャッジ日時 | 2024-07-04 13:35:12 |
合計ジャッジ時間 | 5,844 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
100,736 KB |
testcase_01 | AC | 45 ms
100,736 KB |
testcase_02 | AC | 46 ms
100,864 KB |
testcase_03 | AC | 44 ms
100,480 KB |
testcase_04 | AC | 47 ms
100,992 KB |
testcase_05 | AC | 49 ms
101,248 KB |
testcase_06 | AC | 51 ms
101,312 KB |
testcase_07 | AC | 53 ms
101,616 KB |
testcase_08 | AC | 57 ms
101,916 KB |
testcase_09 | AC | 61 ms
102,180 KB |
testcase_10 | AC | 69 ms
102,692 KB |
testcase_11 | WA | - |
testcase_12 | AC | 85 ms
104,288 KB |
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 | AC | 272 ms
106,348 KB |
testcase_23 | AC | 301 ms
106,468 KB |
testcase_24 | AC | 44 ms
100,804 KB |
testcase_25 | AC | 123 ms
107,364 KB |
testcase_26 | AC | 148 ms
109,284 KB |
testcase_27 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef complex<double> P; namespace std { bool operator < (const P& a, const P& b) { return real(a) != real(b) ? real(a) < real(b) : imag(a) < imag(b); } } #define EPS 1e-8 struct C { P p; double r; C(const P &p, double r) : p(p), r(r) { } }; bool xy_less(const P& a, const P& b) { if (abs(a.imag() - b.imag()) < EPS) return (a.real() < b.real()); return (a.imag() < b.imag()); } double ccw(P a, P b, P c) { return (conj(b - a)*(c - a)).imag(); } template<class IN> void walk_rightside(IN begin, IN end, vector<P>& v) { IN cur = begin; v.push_back(*cur++); vector<P>::size_type s = v.size(); v.push_back(*cur++); while (cur != end) { if (v.size() == s || ccw(v[v.size() - 2], v.back(), *cur) > EPS) v.push_back(*cur++); else v.pop_back(); } v.pop_back(); } vector<P> convex_hull(vector<P> v) { if (v.size() <= 1) return v; // EXCEPTIONAL sort(v.begin(), v.end(), xy_less); vector<P> cv; walk_rightside(v.begin(), v.end(), cv); walk_rightside(v.rbegin(), v.rend(), cv); return cv; } vector<int> box[2004][2004]; vector<P> p2[130002]; int unidp[130002]; int findunidp(int a){ if (unidp[a] < 0) return a; else return unidp[a] = findunidp(unidp[a]); } bool connect(int a, int b){ a = findunidp(a); b = findunidp(b); if (a == b) return false; unidp[a] += unidp[b]; unidp[b] = a; return true; } int main(){ int N; cin >> N; vector<P> ps; for (int i = 0; i < N; i++) { int X, Y; cin >> X >> Y; ps.push_back(P(X + 10000, Y + 10000)); unidp[i] = -1; } if (N == 0){ cout << 1 << endl; return 0; } for (int i = 0; i < N; i++) { int Xb = (int)(ps[i].real()) / 10 + 1; int Yb = (int)(ps[i].imag()) / 10 + 1; for (int dy = -1; dy <= 1; dy++) { for (int dx = -1; dx <= 1; dx++) { int nXb = Xb + dx; int nYb = Yb + dy; for (int j : box[nXb][nYb]) { if (abs(ps[i] - ps[j]) <= 10){ connect(i, j); } } } } box[Xb][Yb].push_back(i); } for (int i = 0; i < N; i++) { p2[findunidp(i)].push_back(ps[i]); } double ans = 0; for (int i = 0; i < N; i++) { if (p2[i].size() < 2) continue; int M = p2[i].size(); int p = 0; int q = 0; vector<double> dist(M, 0); for (int j = 0; j < M; j++) { while (true){ q = p + 1; q %= M; double d1 = abs(p2[i][j] - p2[i][p]); double d2 = abs(p2[i][j] - p2[i][q]); ans = max(ans, d2); dist[j] = max(dist[j], d1); if (d1 >= d2) break; p = q; } while (true){ int k = j - 1; if (k < 0) k += M; double d = abs(p2[i][k] - p2[i][p]); if (dist[k] < d){ dist[k] = d; j = k; } else break; } j++; } } ans += 2; printf("%.14f\n", ans); }