結果

問題 No.3 ビットすごろく
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-20 19:30:37
言語 PHP
(8.3.4)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 886 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 34,616 KB
最終ジャッジ日時 2024-07-01 07:21:00
合計ジャッジ時間 6,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
32,404 KB
testcase_01 AC 40 ms
32,528 KB
testcase_02 AC 40 ms
32,272 KB
testcase_03 AC 49 ms
32,272 KB
testcase_04 AC 43 ms
32,404 KB
testcase_05 AC 69 ms
32,528 KB
testcase_06 AC 50 ms
32,400 KB
testcase_07 AC 45 ms
32,272 KB
testcase_08 AC 60 ms
32,528 KB
testcase_09 AC 82 ms
34,492 KB
testcase_10 AC 100 ms
34,488 KB
testcase_11 AC 76 ms
34,488 KB
testcase_12 AC 67 ms
32,400 KB
testcase_13 AC 47 ms
32,528 KB
testcase_14 AC 98 ms
34,616 KB
testcase_15 AC 112 ms
34,492 KB
testcase_16 AC 112 ms
34,360 KB
testcase_17 AC 113 ms
34,484 KB
testcase_18 AC 46 ms
32,400 KB
testcase_19 AC 117 ms
34,488 KB
testcase_20 AC 42 ms
32,404 KB
testcase_21 AC 41 ms
32,528 KB
testcase_22 AC 100 ms
34,488 KB
testcase_23 AC 113 ms
34,488 KB
testcase_24 AC 116 ms
34,488 KB
testcase_25 AC 115 ms
34,488 KB
testcase_26 AC 40 ms
32,400 KB
testcase_27 AC 49 ms
32,340 KB
testcase_28 AC 110 ms
34,616 KB
testcase_29 AC 77 ms
34,492 KB
testcase_30 AC 41 ms
32,404 KB
testcase_31 AC 41 ms
32,276 KB
testcase_32 AC 72 ms
32,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$visited = array();
$maxtime = -1;
move(1,1,1);
echo $maxtime.PHP_EOL;

function move ( $prev, $start, $time ) {
	global $n, $visited, $maxtime;
	if ( ($start < 1) || ($start > $n) ) {				// 範囲外
		return;
	}
	if ( ($maxtime != -1) && ($maxtime <= $time) ) {	// 移動回数多すぎ
		return;
	}
	
	// ゴール到着
	if ( $start == $n ) {
		$maxtime = $time;
		return;
	}
	
	if ( isset($visited[$start-1]) === TRUE ) {			// 訪問済
		if ( $visited[$start-1] <= $time ) {			// ルート問わず、高コストで到達してしまった
			return;
		}
	}
	$visited[$start-1] = $time;
	$bit = decbin($start);
	$counts = count_chars($bit, 1);
	$count = $counts[ord('1')];
	$time++;
	if ( ($start+$count) != $prev ) {
		move($start, $start+$count, $time);
	}
	if ( ($start-$count) != $prev ) {
		move($start, $start-$count, $time);
	}
	
	return;
}
0