結果

問題 No.4 おもりと天秤
ユーザー ねずねず
提出日時 2018-01-28 11:05:11
言語 PHP
(8.3.4)
結果
AC  
実行時間 98 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 60,984 KB
最終ジャッジ日時 2024-06-26 10:26:39
合計ジャッジ時間 2,440 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
32,400 KB
testcase_01 AC 41 ms
32,404 KB
testcase_02 AC 41 ms
32,020 KB
testcase_03 AC 39 ms
32,404 KB
testcase_04 AC 40 ms
32,400 KB
testcase_05 AC 89 ms
44,600 KB
testcase_06 AC 39 ms
32,400 KB
testcase_07 AC 96 ms
44,600 KB
testcase_08 AC 40 ms
32,276 KB
testcase_09 AC 73 ms
60,984 KB
testcase_10 AC 98 ms
44,728 KB
testcase_11 AC 40 ms
32,272 KB
testcase_12 AC 39 ms
32,272 KB
testcase_13 AC 39 ms
32,272 KB
testcase_14 AC 39 ms
32,400 KB
testcase_15 AC 40 ms
32,400 KB
testcase_16 AC 40 ms
32,276 KB
testcase_17 AC 40 ms
32,276 KB
testcase_18 AC 73 ms
44,476 KB
testcase_19 AC 86 ms
44,728 KB
testcase_20 AC 86 ms
44,600 KB
testcase_21 AC 82 ms
44,724 KB
testcase_22 AC 87 ms
44,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$weights = explode(" ", trim(fgets(STDIN)));
$sum = array_sum($weights);
$dp = array_fill(0, $n, array_fill(0, $sum + 1, false));
$dp[0][$weights[0]] = true;
for ($i = 1; $i < $n; $i++) {
	$w = $weights[$i];
	for ($j = 0; $j <= $sum; $j++) {
		if (!$dp[$i - 1][$j]) continue;
		if ($j + $w <= $sum) $dp[$i][$j + $w] = true;
		if ($j - $w >= 0)    $dp[$i][$j - $w] = true;
		if ($w - $j >= 0)    $dp[$i][$w - $j] = true;
	}
}
echo $dp[$n - 1][0] ? "possible" : "impossible";
?>
0