結果

問題 No.3 ビットすごろく
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-19 22:38:33
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 940 bytes
コンパイル時間 1,725 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 34,492 KB
最終ジャッジ日時 2024-07-06 05:47:43
合計ジャッジ時間 4,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
32,400 KB
testcase_01 AC 40 ms
32,400 KB
testcase_02 AC 40 ms
32,396 KB
testcase_03 AC 50 ms
32,272 KB
testcase_04 AC 42 ms
32,404 KB
testcase_05 AC 87 ms
32,400 KB
testcase_06 AC 51 ms
32,276 KB
testcase_07 AC 44 ms
32,400 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 80 ms
32,276 KB
testcase_13 AC 46 ms
32,400 KB
testcase_14 AC 140 ms
32,396 KB
testcase_15 AC 194 ms
34,492 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 46 ms
32,144 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 41 ms
32,276 KB
testcase_22 AC 145 ms
32,276 KB
testcase_23 AC 200 ms
34,492 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 41 ms
32,400 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 40 ms
32,400 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$visited = array();
$ret = move(1, $visited, 1);
if ( $ret === FALSE ) {
	echo '-1'.PHP_EOL;
}
else {
	echo $ret.PHP_EOL;
}

function move ( $start, &$visited, $time ) {
	global $n;
	if (
		(array_search($start, $visited) !== FALSE) ||	// すでに訪問済
		($start < 1) ||									// 範囲外(マイナス方向)
		($start > $n)									// 範囲外(プラス方向)
	) {
		return FALSE;
	}
	$visited[] = $start;
	// ゴール到着
	if ( $start == $n ) {
		return $time;
	}
	
	$bit = decbin($start);
	$counts = count_chars($bit, 1);
	$count = $counts[ord('1')];
	$time++;
	return select_waypoint(move($start+$count, $visited, $time), move($start-$count, $visited, $time));
}

function select_waypoint($a, $b) {
	if ( $a === FALSE ) {
		return $b;
	}
	else if ( $b === FALSE ) {
		return $a;
	}
	else if ( ($a === FALSE) && ($b === FALSE) ) {
		return FALSE;
	}
	else {
		return min($a, $b);
	}
}
0