結果

問題 No.34 砂漠の行商人
ユーザー nebukuro09nebukuro09
提出日時 2016-12-07 14:50:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 2,190 ms / 5,000 ms
コード長 1,164 bytes
コンパイル時間 1,022 ms
コンパイル使用メモリ 110,744 KB
実行使用メモリ 324,964 KB
最終ジャッジ日時 2024-06-12 05:24:11
合計ジャッジ時間 29,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,812 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 83 ms
17,456 KB
testcase_03 AC 66 ms
17,104 KB
testcase_04 AC 573 ms
84,760 KB
testcase_05 AC 735 ms
98,804 KB
testcase_06 AC 355 ms
75,592 KB
testcase_07 AC 1,124 ms
170,828 KB
testcase_08 AC 1,515 ms
197,888 KB
testcase_09 AC 1,272 ms
181,732 KB
testcase_10 AC 1,544 ms
324,836 KB
testcase_11 AC 1,484 ms
324,964 KB
testcase_12 AC 578 ms
87,476 KB
testcase_13 AC 2,190 ms
324,856 KB
testcase_14 AC 2,004 ms
318,804 KB
testcase_15 AC 595 ms
92,060 KB
testcase_16 AC 538 ms
89,088 KB
testcase_17 AC 1,192 ms
179,584 KB
testcase_18 AC 116 ms
26,132 KB
testcase_19 AC 2,024 ms
309,680 KB
testcase_20 AC 2,010 ms
315,748 KB
testcase_21 AC 2,156 ms
321,808 KB
testcase_22 AC 1,858 ms
299,772 KB
testcase_23 AC 840 ms
106,276 KB
testcase_24 AC 1,987 ms
309,600 KB
testcase_25 AC 1,132 ms
175,100 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;
import std.numeric;
import core.bitop;


void main() {
  auto s = readln.split.map!(to!int);
  auto N = s[0];
  auto V = s[1];
  auto Sc = s[2]-1;
  auto Sr = s[3]-1;
  auto Gc = s[4]-1;
  auto Gr = s[5]-1;
  auto B = iota(N).map!(_ => readln.split.map!(to!int).array).array;
  auto dp = new int[][][](6000, N, N);
  int[] dr = [0, 0, -1, 1];
  int[] dc = [-1, 1, 0, 0];
  int INF = 10^^9;

  foreach (k; 0..6000)
    foreach (i; 0..N)
      foreach (j; 0..N)
        dp[k][i][j] = (i == Sr && j == Sc) ? 0 : INF;

  foreach (k; 1..6000)
    foreach (i; 0..N)
      foreach (j; 0..N) {
        if (abs(Sr-i) + abs(Sc-j) > k) continue;
        foreach (d; 0..4) {
          auto nr = i + dr[d];
          auto nc = j + dc[d];
          if (nr >= 0 && nr < N && nc >= 0 && nc < N)
            dp[k][i][j] = min(dp[k][i][j], dp[k-1][nr][nc]+B[i][j]);
        }
      }

  foreach (k; 0..6000)
    if (dp[k][Gr][Gc] < V) {
      k.writeln;
      return;
    }
  writeln(-1);
}
0