結果
問題 | No.96 圏外です。 |
ユーザー | te-sh |
提出日時 | 2017-04-21 11:19:57 |
言語 | D (dmd 2.106.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,798 bytes |
コンパイル時間 | 2,894 ms |
コンパイル使用メモリ | 168,916 KB |
実行使用メモリ | 21,988 KB |
最終ジャッジ日時 | 2024-06-12 18:47:40 |
合計ジャッジ時間 | 9,590 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; import std.math; void main() { auto n = readln.chomp.to!size_t; auto pi = n.iota.map!(_ => readln.split.to!(int[])).map!(rd => point(rd[0], rd[1])).array; if (n == 0) { writeln(1); return; } auto minX = pi.map!"a.x".minElement; auto minY = pi.map!"a.y".minElement; foreach (p; pi) { p.x -= minX; p.y -= minY; } auto maxX = pi.map!"a.x".maxElement, maxBx = maxX / 10; auto maxY = pi.map!"a.y".maxElement, maxBy = maxY / 10; auto bucket = new size_t[][][](maxBy + 1, maxBx + 1); foreach (i, p; pi) bucket[p.y / 10][p.x / 10] ~= i; auto uf = UnionFind!size_t(n); foreach (i, p; pi) for (auto by = p.y / 10 - 1; by <= p.y / 10 + 1; ++by) for (auto bx = p.x / 10 - 1; bx <= p.x / 10 + 1; ++bx) { if (bx < 0 || bx > maxBx || by < 0 || by > maxBy) continue; foreach (ti; bucket[by][bx]) { if (i >= ti || (p - pi[ti]).hypot2 > 100) continue; uf.unite(i, ti); } } auto gi = new size_t[][](n); foreach (i; 0..n) gi[uf.find(i)] ~= i; auto gpi = gi.filter!"!a.empty".map!(g => pi.indexed(g).array.convexHull); auto maxD = 0; foreach (gp; gpi) foreach (i; 0..gp.length) foreach (j; i+1..gp.length) maxD = max(maxD, (gp[i] - gp[j]).hypot2); writefln("%.7f", maxD.to!real.sqrt + 2); } struct UnionFind(T) { T[] p; // parent const T s; // sentinel this(T n) { p = new T[](n); s = n + 1; p[] = s; } T find(T i) { if (p[i] == s) { return i; } else { p[i] = find(p[i]); return p[i]; } } void unite(T i, T j) { auto pi = find(i), pj = find(j); if (pi != pj) p[pj] = pi; } } struct Point(T) { T x, y; pure auto opBinary(string op: "+")(Point!T rhs) const { return Point!T(x + rhs.x, y + rhs.y); } pure auto opBinary(string op: "-")(Point!T rhs) const { return Point!T(x - rhs.x, y - rhs.y); } pure auto opBinary(string op: "*")(Point!T rhs) const { return x * rhs.x + y * rhs.y; } pure auto opBinary(string op: "*")(T a) const { return Point!T(x * a, y * a); } pure auto hypot2() const { return x ^^ 2 + y ^^ 2; } } alias Point!int point; Point!T[] convexHull(T)(Point!T[] pi) { auto cross(Point!T a, Point!T b, Point!T o) { return (a.x - o.x) * (b.y - o.y) - (a.y - o.y) * (b.x - o.x); } pi.sort!"a.x == b.x ? a.y < b.y : a.x < b.x"; Point!T[] lower; foreach (p; pi) { while (lower.length >= 2 && cross(lower[$-2], lower[$-1], p) <= 0) lower.length -= 1; lower ~= p; } Point!T[] upper; foreach_reverse (p; pi) { while (upper.length >= 2 && cross(upper[$-2], upper[$-1], p) <= 0) upper.length -= 1; upper ~= p; } return (lower.dropBackOne ~ upper.dropBackOne).array; }