結果

問題 No.258 回転寿司(2)
ユーザー takeya_okinotakeya_okino
提出日時 2017-08-11 09:16:18
言語 PHP
(843.2)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 690 bytes
コンパイル時間 3,572 ms
コンパイル使用メモリ 31,888 KB
実行使用メモリ 34,448 KB
最終ジャッジ日時 2024-11-06 19:14:03
合計ジャッジ時間 7,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
34,320 KB
testcase_01 AC 47 ms
34,448 KB
testcase_02 AC 45 ms
32,524 KB
testcase_03 AC 43 ms
31,160 KB
testcase_04 AC 44 ms
31,500 KB
testcase_05 AC 44 ms
31,504 KB
testcase_06 AC 47 ms
33,676 KB
testcase_07 AC 44 ms
31,128 KB
testcase_08 AC 44 ms
31,372 KB
testcase_09 AC 44 ms
31,356 KB
testcase_10 AC 43 ms
31,136 KB
testcase_11 AC 44 ms
31,116 KB
testcase_12 AC 45 ms
31,248 KB
testcase_13 AC 45 ms
30,924 KB
testcase_14 AC 46 ms
33,164 KB
testcase_15 AC 44 ms
30,988 KB
testcase_16 AC 43 ms
31,028 KB
testcase_17 AC 43 ms
30,928 KB
testcase_18 AC 47 ms
33,936 KB
testcase_19 AC 43 ms
31,412 KB
testcase_20 AC 45 ms
32,528 KB
testcase_21 AC 46 ms
33,420 KB
testcase_22 AC 43 ms
31,288 KB
testcase_23 AC 43 ms
31,116 KB
testcase_24 AC 43 ms
31,332 KB
testcase_25 WA -
testcase_26 AC 44 ms
32,144 KB
testcase_27 AC 42 ms
31,244 KB
testcase_28 AC 46 ms
34,444 KB
testcase_29 AC 43 ms
31,248 KB
testcase_30 AC 43 ms
31,244 KB
testcase_31 AC 43 ms
31,416 KB
testcase_32 AC 42 ms
31,248 KB
testcase_33 AC 45 ms
32,780 KB
testcase_34 AC 44 ms
31,888 KB
testcase_35 AC 44 ms
31,756 KB
testcase_36 AC 43 ms
31,344 KB
testcase_37 AC 43 ms
31,224 KB
testcase_38 AC 44 ms
31,372 KB
testcase_39 AC 44 ms
31,172 KB
testcase_40 AC 45 ms
32,396 KB
testcase_41 AC 45 ms
32,908 KB
testcase_42 AC 43 ms
30,864 KB
testcase_43 AC 43 ms
31,204 KB
testcase_44 AC 45 ms
33,292 KB
testcase_45 AC 46 ms
32,528 KB
testcase_46 AC 43 ms
31,292 KB
testcase_47 AC 44 ms
32,400 KB
testcase_48 AC 44 ms
31,132 KB
testcase_49 AC 44 ms
31,332 KB
testcase_50 AC 43 ms
30,876 KB
testcase_51 AC 44 ms
32,140 KB
testcase_52 AC 44 ms
31,632 KB
testcase_53 AC 43 ms
30,880 KB
testcase_54 AC 46 ms
32,396 KB
testcase_55 AC 45 ms
34,256 KB
testcase_56 AC 44 ms
32,400 KB
testcase_57 AC 44 ms
31,292 KB
testcase_58 AC 45 ms
31,632 KB
testcase_59 AC 45 ms
33,548 KB
testcase_60 AC 43 ms
31,124 KB
testcase_61 AC 45 ms
32,780 KB
testcase_62 AC 44 ms
31,292 KB
testcase_63 AC 43 ms
32,080 KB
testcase_64 AC 46 ms
34,444 KB
testcase_65 AC 45 ms
32,268 KB
testcase_66 AC 43 ms
31,152 KB
testcase_67 AC 45 ms
33,168 KB
testcase_68 AC 45 ms
33,296 KB
testcase_69 AC 46 ms
32,908 KB
testcase_70 AC 44 ms
31,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$N = trim(fgets(STDIN));
$V = explode(" ", trim(fgets(STDIN)));
$dp = array();
$list = array();

$dp[0] = $V[0];
$list[0] = array(1);

if($V[0] >= $V[1]) {
  $dp[1] = $V[0];
  $list[1] = array(1);
} else {
  $dp[1] = $V[1];
  $list[1] = array(2);
}

for($i = 2; $i < $N; $i++) {
  if($dp[$i - 2] + $V[$i] >= $dp[$i - 1]) {
    $dp[$i] = $dp[$i - 2] + $V[$i];
    $b = $list[$i - 2];
    $b[] = $i + 1;
    $list[$i] = $b;
  } else {
    $dp[$i] = $dp[$i - 1];
    $list[$i] = $list[$i - 1];
  }
}

print($dp[$N - 1]);
print("\n");

$a = $list[$N - 1];
for($i = 0; $i < count($a); $i++) {
  print($a[$i]);
  if($i < count($a) - 1) {
    print(" ");
  } else {
    print("\n");
  }
}
?>
0