結果

問題 No.1 道のショートカット
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-14 22:56:30
言語 PHP
(8.3.4)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 1,692 bytes
コンパイル時間 2,752 ms
コンパイル使用メモリ 30,996 KB
実行使用メモリ 31,392 KB
最終ジャッジ日時 2024-07-20 16:14:07
合計ジャッジ時間 5,874 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,264 KB
testcase_01 AC 40 ms
31,180 KB
testcase_02 AC 40 ms
31,064 KB
testcase_03 AC 40 ms
30,888 KB
testcase_04 AC 40 ms
31,192 KB
testcase_05 AC 40 ms
31,064 KB
testcase_06 AC 41 ms
31,164 KB
testcase_07 AC 40 ms
31,260 KB
testcase_08 AC 63 ms
31,120 KB
testcase_09 AC 46 ms
31,116 KB
testcase_10 AC 50 ms
31,112 KB
testcase_11 AC 41 ms
31,072 KB
testcase_12 AC 47 ms
31,392 KB
testcase_13 AC 46 ms
31,072 KB
testcase_14 AC 40 ms
30,824 KB
testcase_15 AC 41 ms
31,256 KB
testcase_16 AC 41 ms
31,304 KB
testcase_17 AC 39 ms
31,240 KB
testcase_18 AC 39 ms
31,272 KB
testcase_19 AC 40 ms
31,100 KB
testcase_20 AC 40 ms
30,920 KB
testcase_21 AC 39 ms
30,860 KB
testcase_22 AC 39 ms
31,036 KB
testcase_23 AC 53 ms
31,208 KB
testcase_24 AC 44 ms
31,156 KB
testcase_25 AC 39 ms
31,036 KB
testcase_26 AC 39 ms
31,044 KB
testcase_27 AC 47 ms
31,100 KB
testcase_28 AC 39 ms
31,068 KB
testcase_29 AC 48 ms
31,080 KB
testcase_30 AC 41 ms
31,064 KB
testcase_31 AC 41 ms
31,080 KB
testcase_32 AC 45 ms
31,160 KB
testcase_33 AC 42 ms
31,220 KB
testcase_34 AC 45 ms
31,084 KB
testcase_35 AC 40 ms
31,016 KB
testcase_36 AC 44 ms
30,984 KB
testcase_37 AC 44 ms
31,324 KB
testcase_38 AC 39 ms
30,984 KB
testcase_39 AC 41 ms
31,060 KB
testcase_40 AC 40 ms
30,864 KB
testcase_41 AC 40 ms
31,188 KB
testcase_42 AC 40 ms
31,196 KB
testcase_43 AC 40 ms
30,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$g_towns = trim(fgets(STDIN));
$g_money = trim(fgets(STDIN));
$g_roads = trim(fgets(STDIN));
$g_departure = explode(" ",trim(fgets(STDIN)));
$g_arrival = explode(" ",trim(fgets(STDIN)));
$g_cost = explode(" ",trim(fgets(STDIN)));
$g_time = explode(" ",trim(fgets(STDIN)));

$ret = move(1,$g_money,0,FALSE);
if ( $ret === FALSE ) {
    echo "-1\n";
}
else {
    echo $ret.PHP_EOL;
}

// 移動をおこなう関数
function move($start, $money, $time, $maxtime) {
    global $g_towns,$g_departure,$g_arrival,$g_cost,$g_time;
    // ----- 再帰呼出し終了条件の判定 ----------
    // コストが最大値を超えてしまった場合
    if ( $money < 0 ) {
        return FALSE;
    }
    // 最後の街に到着した場合
    else if ( $start == $g_towns ) {
        return $time;
    }
    // 他のルートより時間がかかったことを検出した場合
    else if ( ($maxtime !== FALSE) && ($maxtime <= $time) ) {
        return FALSE;
    }
    // ----- 再帰呼出しをおこなう ------------
    $min = $maxtime;
    foreach ( $g_departure as $index => $dep ) {
        // 行き先が見つかった
        if ( $dep == $start ) {
            $newtime = move($g_arrival[$index],$money-$g_cost[$index],$time+$g_time[$index],$min);
            if ( $newtime === FALSE ) {
                // 今回のルートでは最後まで辿りつけなかったので何もしない。
            }
            else if ( $min === FALSE ) {
                $min = $newtime;
            }
            else {
                $min = min($min, $newtime);
            }
        }
    }
    // ----- 探した最短時間での結果を返却する
    return $min;
}
0