結果

問題 No.3 ビットすごろく
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-21 17:45:24
言語 PHP
(8.3.4)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 747 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 31,392 KB
最終ジャッジ日時 2024-07-01 07:21:51
合計ジャッジ時間 2,581 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,068 KB
testcase_01 AC 43 ms
31,092 KB
testcase_02 AC 42 ms
30,984 KB
testcase_03 AC 42 ms
31,032 KB
testcase_04 AC 42 ms
30,972 KB
testcase_05 AC 43 ms
31,228 KB
testcase_06 AC 42 ms
30,776 KB
testcase_07 AC 41 ms
30,988 KB
testcase_08 AC 43 ms
31,296 KB
testcase_09 AC 43 ms
31,180 KB
testcase_10 AC 44 ms
31,316 KB
testcase_11 AC 43 ms
31,252 KB
testcase_12 AC 43 ms
31,176 KB
testcase_13 AC 43 ms
31,120 KB
testcase_14 AC 45 ms
31,392 KB
testcase_15 AC 45 ms
30,980 KB
testcase_16 AC 45 ms
31,208 KB
testcase_17 AC 45 ms
31,292 KB
testcase_18 AC 43 ms
31,264 KB
testcase_19 AC 46 ms
30,800 KB
testcase_20 AC 41 ms
31,320 KB
testcase_21 AC 41 ms
31,016 KB
testcase_22 AC 44 ms
31,040 KB
testcase_23 AC 45 ms
30,944 KB
testcase_24 AC 45 ms
30,984 KB
testcase_25 AC 45 ms
31,264 KB
testcase_26 AC 41 ms
31,116 KB
testcase_27 AC 42 ms
31,392 KB
testcase_28 AC 45 ms
31,012 KB
testcase_29 AC 44 ms
31,116 KB
testcase_30 AC 41 ms
31,092 KB
testcase_31 AC 42 ms
30,936 KB
testcase_32 AC 43 ms
31,260 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$queue = array();
$point = array_fill(0, $n, -1);
$move = 1;
$point[0] = $move;
$queue[] = 1;

// 幅優先探索
while (count($queue) > 0) {
	// 処理対象のマスを取り出す
	$value = array_shift($queue);
	
	// 移動個数を計算する
	$bit = decbin($value);
	$counts = count_chars($bit, 1);
	$count = $counts[ord('1')];
	
	// 移動回数を更新
	$move = $point[$value-1]+1;
	
	// 移動先を訪問
	if ( (($value+$count) <= $n) && ($point[$value+$count-1] === -1) ) {
		$point[$value+$count-1] = $move;
		$queue[] = $value+$count;
	}
	if ( (($value-$count) > 1) && ($point[$value-$count-1] === -1) ) {
		$point[$value-$count-1] = $move;
		$queue[] = $value-$count;
	}
}
echo $point[$n-1] .PHP_EOL;
0