結果

問題 No.323 yuki国
ユーザー nebukuro09nebukuro09
提出日時 2016-11-04 00:55:38
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,479 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 115,548 KB
実行使用メモリ 84,132 KB
最終ジャッジ日時 2024-06-12 04:55:33
合計ジャッジ時間 7,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 118 ms
23,336 KB
testcase_09 WA -
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 WA -
testcase_14 AC 322 ms
69,224 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 10 ms
6,940 KB
testcase_19 AC 303 ms
43,596 KB
testcase_20 AC 25 ms
6,948 KB
testcase_21 AC 388 ms
81,484 KB
testcase_22 WA -
testcase_23 AC 374 ms
65,956 KB
testcase_24 AC 94 ms
23,304 KB
testcase_25 AC 239 ms
22,136 KB
testcase_26 AC 91 ms
22,900 KB
testcase_27 AC 441 ms
84,132 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 10 ms
6,940 KB
testcase_33 AC 5 ms
6,940 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 9 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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[long] 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*100000000.to!long+j*1000000+s*10000 in visited)
      continue;
    visited[i*100000000.to!long+j*1000000+s*10000] = 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 > 10000 || ni*100000000.to!long+nj*1000000+ns*10000 in visited)
        continue;
      queue.insert(tuple(ni, nj, ns));
    }
  }

  writeln("No");
}
0