結果
問題 | No.2856 Junk Market Game |
ユーザー | ynishi2015 |
提出日時 | 2024-08-25 16:00:23 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,224 bytes |
コンパイル時間 | 1,613 ms |
コンパイル使用メモリ | 32,144 KB |
実行使用メモリ | 32,660 KB |
最終ジャッジ日時 | 2024-08-25 16:00:54 |
合計ジャッジ時間 | 29,578 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 42 ms
32,532 KB |
testcase_04 | AC | 42 ms
32,272 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 42 ms
32,528 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | AC | 794 ms
32,340 KB |
testcase_51 | AC | 819 ms
32,400 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php [$N] = ints(); $A = ints(); $B = ints(); define("MAX", 10**10); $ans = 0; for($j = 0; $j < $N; $j++){ // 一般人が買う $Bmin = $Bmin2 = []; for($i = 0; $i < $N*2; $i++)$Bmin[] = min(($Bmin[$i-1]??MAX), $B[$i]); for($i = 0; $i < $N*2; $i++)$Bmin2[] = min(($Bmin2[$i-1]??MAX), $B[$N*2-1-$i]); $max = -MAX; $maxI = -1; for($i = 0; $i < $N*2; $i++){ $p = -$A[$i]+min($Bmin[$i-1]??MAX, $Bmin2[$N*2-$i-2]??MAX); if($max < $p && $A[$i]!=MAX){ $max = $p; $maxI = $i; } } $ans+=$A[$maxI]; $A[$maxI]=$B[$maxI]=MAX; // 部員が買う $Amin = $Amin2 = []; for($i = 0; $i < $N*2; $i++)$Amin[] = min(($Amin[$i-1]??MAX), $A[$i]); for($i = 0; $i < $N*2; $i++)$Amin2[] = min(($Amin2[$i-1]??MAX), $A[$N*2-1-$i]); $max = -MAX; $maxI = -1; for($i = 0; $i < $N*2; $i++){ $p = -$B[$i]+min($Amin[$i-1]??MAX, $Amin2[$N*2-$i-2]??MAX); if($max < $p && $B[$i]!=MAX){ $max = $p; $maxI = $i; } } $ans-=$B[$maxI]; $A[$maxI]=$B[$maxI]=MAX; } echo $ans; 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 isqrt($n):int{$res=intval(sqrt($n))+1;while($res*$res>$n)$res--;return $res;} 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 atsu1($array){$a=array_flip($array);$fuku=array_flip($a);sort($fuku);array_unshift($fuku,0);unset($fuku[0]);$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(0, $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; $a--; $b--; 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; }