結果
問題 | No.13 囲みたい! |
ユーザー | te-sh |
提出日時 | 2017-01-13 19:05:21 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 158 ms / 5,000 ms |
コード長 | 1,779 bytes |
コンパイル時間 | 815 ms |
コンパイル使用メモリ | 109,564 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 06:25:15 |
合計ジャッジ時間 | 1,921 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 53 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 65 ms
6,940 KB |
testcase_06 | AC | 107 ms
6,944 KB |
testcase_07 | AC | 158 ms
6,944 KB |
testcase_08 | AC | 105 ms
6,940 KB |
testcase_09 | AC | 80 ms
6,944 KB |
testcase_10 | AC | 9 ms
6,940 KB |
testcase_11 | AC | 70 ms
6,940 KB |
testcase_12 | AC | 6 ms
6,940 KB |
testcase_13 | AC | 22 ms
6,940 KB |
testcase_14 | AC | 24 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
Main.d(29): Deprecation: foreach: loop index implicitly converted from `size_t` to `int` Main.d(30): Deprecation: foreach: loop index implicitly converted from `size_t` to `int`
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; import std.container; // SList, DList, BinaryHeap void main() { auto rd = readln.split.to!(size_t[]), w = rd[0], h = rd[1]; auto mij = h.iota.map!(_ => readln.split.to!(int[])).array; int[] usedDigits() { bool[int] b; foreach (mi; mij) foreach (m; mi) b[m] = true; return b.keys; } bool valid(point p) { return p.x >= 0 && p.y >= 0 && p.x < w && p.y < h; } bool calc(int d) { auto vij = new bool[][](h, w); point findDigit() { foreach (int i, mi; mij) foreach (int j, m; mi) if (m == d && !vij[i][j]) return point(j, i); return point(-1, -1); } bool wfs(point s) { auto q = SList!pointsCP(pointsCP(s, point(-1, -1))); vij[s.y][s.x] = true; while (!q.empty) { auto cp = q.front; q.removeFront; auto curr = cp.curr, prev = cp.prev; foreach (sp; sibPoints) { auto np = curr + sp; if (valid(np) && np != prev && mij[curr.y][curr.x] == mij[np.y][np.x]) { if (vij[np.y][np.x]) return true; vij[np.y][np.x] = true; q.insertFront(pointsCP(np, cp.curr)); } } } return false; } for (;;) { auto s = findDigit; if (s.x == -1 || s.y == -1) return false; if (wfs(s)) return true; } } auto di = usedDigits; writeln(di.any!calc ? "possible" : "impossible"); } struct pointsCP { point curr; point prev; } struct Point(T) { T x, y; point opBinary(string op)(point rhs) { static if (op == "+") return point(x + rhs.x, y + rhs.y); } } alias Point!int point; const auto sibPoints = [point(-1, 0), point(0, -1), point(1, 0), point(0, 1)];