結果

問題 No.20 砂漠のオアシス
ユーザー mino_yellowmino_yellow
提出日時 2022-11-20 23:27:53
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 734 bytes
コンパイル時間 2,724 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 34,064 KB
最終ジャッジ日時 2024-09-21 19:59:25
合計ジャッジ時間 13,410 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
31,192 KB
testcase_01 AC 37 ms
31,160 KB
testcase_02 AC 42 ms
31,368 KB
testcase_03 AC 56 ms
31,392 KB
testcase_04 AC 130 ms
31,224 KB
testcase_05 AC 74 ms
34,064 KB
testcase_06 AC 149 ms
32,016 KB
testcase_07 WA -
testcase_08 AC 1,295 ms
32,272 KB
testcase_09 AC 2,451 ms
32,400 KB
testcase_10 AC 40 ms
31,040 KB
testcase_11 AC 39 ms
30,996 KB
testcase_12 AC 74 ms
31,216 KB
testcase_13 AC 120 ms
31,096 KB
testcase_14 AC 379 ms
31,168 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 246 ms
31,372 KB
testcase_18 WA -
testcase_19 AC 671 ms
31,504 KB
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN,"%d%d%d%d",$N,$V,$ox,$oy);
--$ox; --$oy;
for($i=0;$i<$N;++$i) $m[] = array_map('intval',explode(" ", trim(fgets(STDIN))));
$memo = array_fill(0,$N,array_fill(0,$N,-1));

run(0,0,$V,1);

if($memo[$N-1][$N-1] > 0) echo "YES" . PHP_EOL;
else echo "NO" . PHP_EOL;

function run($y,$x,$now,$oasis){
    global $m,$N,$ox,$oy,$memo;
    if($y==$oy && $x==$ox && $oasis>0){
        $now *= 2;
        $oasis = 0;
    }
    if($now<=0 || $now <= $memo[$y][$x]) return;
    $memo[$y][$x] = $now;

    if($y > 0) run($y-1,$x,$now-$m[$y-1][$x],$oasis);
    if($y < $N-1) run($y+1,$x,$now-$m[$y+1][$x],$oasis);
    if($x > 0) run($y,$x-1,$now-$m[$y][$x-1],$oasis);
    if($x < $N-1) run($y,$x+1,$now-$m[$y][$x+1],$oasis);
}


?>
0