結果
問題 | No.94 圏外です。(EASY) |
ユーザー | te-sh |
提出日時 | 2016-09-05 11:34:18 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,362 bytes |
コンパイル時間 | 2,606 ms |
コンパイル使用メモリ | 162,292 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 04:08:52 |
合計ジャッジ時間 | 3,542 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 11 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,940 KB |
ソースコード
import std.algorithm, std.array, std.container, std.range, std.bitmanip; import std.numeric, std.math, std.bigint, std.random, core.bitop; import std.string, std.conv, std.stdio, std.typecons; struct point { int x, y; point opBinary(string op)(point rhs) { static if (op == "+") return point(x + rhs.x, y + rhs.y); else static if (op == "-") return point(x - rhs.x, y - rhs.y); } int abs2() { return x ^^ 2 + y ^^ 2; } } class UnionFind { int[] par; this(int n) { par = new int[](n); par[] = -1; } int find(int i) { if (par[i] < 0) { return i; } else { par[i] = find(par[i]); return par[i]; } } void unite(int i, int j) { auto pi = find(i), pj = find(j); if (pi != pj) par[j] = pi; } } void main() { auto n = readln.chomp.to!int; auto pi = iota(n) .map!(_ => readln.split.map!(to!int)) .map!(rd => point(rd[0], rd[1])).array; auto uf = new UnionFind(n); foreach (i; 0..n - 1) foreach (j; i..n) if ((pi[i] - pi[j]).abs2 <= 100) uf.unite(i, j); int[][int] h; foreach (i; 0..n) h[uf.find(i)] ~= i; auto maxDist = 0; foreach (qi; h.byValue) foreach (i; 0..qi.length - 1) foreach (j; i + 1..qi.length) maxDist = max(maxDist, (pi[qi[i]] - pi[qi[j]]).abs2); writefln("%f", n == 0 ? 1 : maxDist.to!real.sqrt + 2); }