結果

問題 No.1 道のショートカット
ユーザー 鶴田浩之鶴田浩之
提出日時 2020-04-14 13:43:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 917 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 31,000 KB
実行使用メモリ 31,144 KB
最終ジャッジ日時 2024-07-20 16:46:20
合計ジャッジ時間 3,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,532 KB
testcase_01 AC 39 ms
30,960 KB
testcase_02 AC 39 ms
30,920 KB
testcase_03 AC 40 ms
30,748 KB
testcase_04 AC 40 ms
30,796 KB
testcase_05 AC 41 ms
30,480 KB
testcase_06 AC 38 ms
30,936 KB
testcase_07 AC 40 ms
30,916 KB
testcase_08 AC 76 ms
30,480 KB
testcase_09 AC 46 ms
30,732 KB
testcase_10 AC 54 ms
30,608 KB
testcase_11 AC 41 ms
30,888 KB
testcase_12 AC 50 ms
30,932 KB
testcase_13 AC 48 ms
30,732 KB
testcase_14 AC 39 ms
30,736 KB
testcase_15 AC 39 ms
30,760 KB
testcase_16 AC 46 ms
30,868 KB
testcase_17 AC 38 ms
30,724 KB
testcase_18 AC 40 ms
31,092 KB
testcase_19 AC 40 ms
30,784 KB
testcase_20 AC 44 ms
30,552 KB
testcase_21 AC 41 ms
30,864 KB
testcase_22 AC 42 ms
30,784 KB
testcase_23 AC 63 ms
30,756 KB
testcase_24 AC 45 ms
30,756 KB
testcase_25 AC 41 ms
30,952 KB
testcase_26 AC 42 ms
30,648 KB
testcase_27 AC 54 ms
30,944 KB
testcase_28 AC 42 ms
30,912 KB
testcase_29 AC 54 ms
30,912 KB
testcase_30 AC 44 ms
30,856 KB
testcase_31 AC 41 ms
30,724 KB
testcase_32 AC 47 ms
30,912 KB
testcase_33 AC 43 ms
30,772 KB
testcase_34 AC 46 ms
30,852 KB
testcase_35 AC 41 ms
30,828 KB
testcase_36 AC 46 ms
31,140 KB
testcase_37 AC 48 ms
30,828 KB
testcase_38 AC 40 ms
30,876 KB
testcase_39 AC 42 ms
31,000 KB
testcase_40 AC 41 ms
30,828 KB
testcase_41 AC 40 ms
30,772 KB
testcase_42 AC 39 ms
31,144 KB
testcase_43 AC 40 ms
30,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$N = trim(fgets(STDIN));
$C = trim(fgets(STDIN));
$V = trim(fgets(STDIN));
$S = explode(" ",trim(fgets(STDIN)));
$T = explode(" ",trim(fgets(STDIN)));
$Y = explode(" ",trim(fgets(STDIN)));
$M = explode(" ",trim(fgets(STDIN)));

$ans = move (1, $C, 0, false);
if ($ans == false) {
  echo "-1\n";
} else {
  echo $ans."\n";
}


function move($start, $money, $time, $totalTime) {
  global $N, $V, $S, $T, $Y, $M;

  if ($money < 0) {
    return false;
  } else if ($start == $N) {
    return $time;
  } else if ($totalTime != false && $time >= $totalTime) {
    return false;
  }

  $min = $totalTime;
  for ($i = 0; $i < $V; $i++) {
    if ($start == $S[$i]) {
      $newTime = move($T[$i], $money - $Y[$i], $time + $M[$i], $min);
      if ($newTime == false) {

      } else if ($min == false) {
        $min = $newTime;
      } else {
        $min = min($min, $newTime);
      }
    }
  }

  return $min;
}

?>
0