結果

問題 No.2028 Even Choice
ユーザー Yoichiro NishimuraYoichiro Nishimura
提出日時 2024-10-01 14:32:48
言語 PHP
(843.2)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 3,705 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 53,048 KB
最終ジャッジ日時 2024-10-01 14:32:58
合計ジャッジ時間 4,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
51,128 KB
testcase_01 AC 145 ms
53,048 KB
testcase_02 AC 169 ms
50,744 KB
testcase_03 AC 105 ms
52,920 KB
testcase_04 AC 109 ms
52,792 KB
testcase_05 AC 58 ms
36,792 KB
testcase_06 AC 164 ms
48,572 KB
testcase_07 AC 61 ms
36,668 KB
testcase_08 AC 126 ms
42,556 KB
testcase_09 AC 108 ms
46,776 KB
testcase_10 AC 55 ms
36,536 KB
testcase_11 AC 68 ms
36,664 KB
testcase_12 AC 48 ms
32,532 KB
testcase_13 AC 93 ms
50,748 KB
testcase_14 AC 77 ms
36,664 KB
testcase_15 AC 37 ms
32,404 KB
testcase_16 AC 39 ms
32,472 KB
testcase_17 AC 39 ms
32,400 KB
testcase_18 AC 39 ms
32,532 KB
testcase_19 AC 38 ms
32,656 KB
testcase_20 AC 43 ms
32,340 KB
testcase_21 AC 40 ms
32,340 KB
testcase_22 AC 41 ms
32,400 KB
testcase_23 AC 41 ms
32,340 KB
testcase_24 AC 40 ms
32,400 KB
testcase_25 AC 40 ms
32,404 KB
testcase_26 AC 37 ms
32,400 KB
testcase_27 AC 38 ms
32,344 KB
testcase_28 AC 77 ms
42,424 KB
testcase_29 AC 74 ms
40,504 KB
testcase_30 AC 56 ms
36,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
[$N, $K] = ints();
$A = ints();
$max = 0;
$minHeapAll = new SPLMinHeap();
$minHeapEven = new SPLMinHeap();
$sumAll = 0;
$sumEven = 0;
for($i = $N-1; $i >= 0; $i--){
  if($i%2 == 1){
    if(isset($A[$i+1])){
      $minHeapAll->insert($A[$i+1]);
      $sumAll += $A[$i+1];
      if($minHeapAll->count()>$K-1)$sumAll -= $minHeapAll->extract();
    }
    // $i番目を使わない場合
//    o($sumEven);
    chmax($max, $sumEven);
    // $i番目を使う場合
//    o($sumAll+$A[$i]);
    chmax($max, $sumAll+$A[$i]);

    $minHeapAll->insert($A[$i]);
    $sumAll += $A[$i];
    if($minHeapAll->count()>$K-1)$sumAll -= $minHeapAll->extract();
    $minHeapEven->insert($A[$i]);
    $sumEven += $A[$i];
    if($minHeapEven->count()>$K)$sumEven -= $minHeapEven->extract();

  }
}
echo $max,"\n";

function str(){return trim(fgets(STDIN));}
function ints($n = false){
  if($n===false){
    $str = trim(fgets(STDIN));if($str == '')return [];
    return array_map('intval',explode(' ',$str));
  }else{$ret = [];for($i = 0; $i < $n; $i++)foreach(array_map('intval',explode(' ',trim(fgets(STDIN)))) as $j => $v)$ret[$j][] = $v;return $ret;}
}
function int(){return intval(trim(fgets(STDIN)));}
function chmax(&$a,$b){if($a<$b){$a=$b;return 1;}return 0;}
function chmin(&$a,$b){if($a>$b){$a=$b;return 1;}return 0;}
function popcount($x){$c=0;while($x){$x&=$x-1;++$c;}return$c;}
function swap(&$a,&$b){$tmp=$a;$a=$b;$b=$tmp;}
function o(...$val){
  if(count($val)==1)$val=array_shift($val);
  echo debug_backtrace()[0]['line'].")";
  if(is_array($val)){
    if(count($val) == 0)echo "empty array\n";
    elseif(!is_array(current($val)))echo "array: ",implode(" ", addIndex($val)),"\n";
    else{
      echo "array:array\n";
      if(isCleanArray($val))foreach($val as $row)echo implode(" ", addIndex($row)),"\n";
      else foreach($val as $i => $row)echo "[".$i."] ".implode(" ", addIndex($row)),"\n";
    }
  }else echo $val."\n";
}
function addIndex($val){if(!isCleanArray($val)){$val = array_map(function($k, $v){return $k.":".$v;}, array_keys($val), $val);}return $val;}
function isCleanArray($array){$clean=true;$i = 0;foreach($array as $k=>$v){if($k != $i++)$clean = false;}return $clean;}
// 座圧対象の配列 -> [圧縮された配列,復元用のMap,圧縮用のMap]
function atsu($array){$a = array_flip($array);$fuku=array_flip($a);sort($fuku);$atsu = array_flip($fuku);foreach($array as $i=>$val)$array[$i]=$atsu[$val];return [$array, $fuku, $atsu];}
function median($a){sort($a);$n=count($a);return $n%2?$a[($n-1)/2]:($a[$n/2-1]+$a[$n/2])/2;}
function gcdAll($array){$gcd=$array[0];for($i=1,$I=count($array);$i<$I;++$i){$gcd=gcd($gcd,$array[$i]);}return $gcd;}
function gcd($m, $n){if(!$n)return $m;return gcd($n, $m % $n);}
function lcmAll($array){$lcm=$array[0];for($i=1,$I=count($array);$i<$I;++$i){$lcm=lcm($lcm,$array[$i]);}return $lcm;}
function lcm($a, $b) {return $a / gcd($a, $b) * $b;}
function loadTree($N = false){
  if($N === false)$N = $GLOBALS['N'];
  return loadGraph($N, $N-1);
}
function loadGraph($N = false, $M = false, $both = true){
  if($N === false)$N = $GLOBALS['N'];
  if($M === false)$M = $GLOBALS['M'];
  $G = array_fill(1, $N, []);
  for($i = 0; $i < $M; $i++){
    $values = ints();
    if(count($values) == 2){
      list($a, $b) = $values;
      if($both == 0){
        $G[$a][] = $b;
      }elseif($both == 1){
        $G[$a][] = $b;
        $G[$b][] = $a;
      }else{
        $G[$b][] = $a;
      }
    }else{
      list($a, $b, $d) = $values;
      if($both == 0){
        $G[$a][] = [$b, $d];
      }elseif($both == 1){
        $G[$a][] = [$b, $d];
        $G[$b][] = [$a, $d];
      }else{
        $G[$b][] = [$a, $d];
      }
    }
  }
  return $G;
}
0