結果
問題 | No.323 yuki国 |
ユーザー | nebukuro09 |
提出日時 | 2016-11-04 01:15:49 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,475 bytes |
コンパイル時間 | 711 ms |
コンパイル使用メモリ | 113,492 KB |
実行使用メモリ | 429,868 KB |
最終ジャッジ日時 | 2024-06-12 04:55:46 |
合計ジャッジ時間 | 8,595 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 983 ms
88,368 KB |
testcase_06 | AC | 303 ms
37,448 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
import std.stdio; import std.array; import std.string; import std.conv; import std.algorithm; import std.typecons; import std.range; import std.random; import std.math; import std.container; void main() { auto input = readln.split.map!(to!int); int H = input[0]; int W = input[1]; input = readln.split.map!(to!int); int A = input[0]; int Si = input[1]; int Sj = input[2]; input = readln.split.map!(to!int); int C = input[0]; int Gi = input[1]; int Gj = input[2]; string[] B = new string[](H); foreach (i; iota(H)) B[i] = readln.chomp; DList!(Tuple!(int, int, int)) queue; queue.insert(tuple(Si, Sj, A)); int i, j, s; Tuple!(int, int, int) node; bool[int][int][int] visited; int[4] dx = [0, 0, 1, -1]; int[4] dy = [1, -1, 0, 0]; while (!queue.empty()) { node = queue.front; queue.removeFront(); i = node[0]; j = node[1]; s = node[2]; if (i == Gi && j == Gj && s == C) { writeln("Yes"); return; } if (i in visited && j in visited[i] && s in visited[i][j]) continue; visited[i][j][s] = true; foreach (k; iota(4)) { int ni = i + dx[k]; int nj = j + dy[k]; if (ni < 0 || ni >= H || nj < 0 || nj >= W) continue; int ns = B[ni][nj] == '*' ? s + 1 : s - 1; if (ns <= 0 || ns > 100000 || (ni in visited && nj in visited[ni] && ns in visited[ni][nj])) continue; queue.insert(tuple(ni, nj, ns)); } } writeln("No"); }