結果

問題 No.489 株に挑戦
ユーザー tailstails
提出日時 2017-02-24 23:41:23
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 667 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 6,016 KB
実行使用メモリ 34,048 KB
最終ジャッジ日時 2024-06-10 23:31:11
合計ジャッジ時間 8,255 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 56 ms
15,360 KB
testcase_03 AC 56 ms
15,488 KB
testcase_04 AC 59 ms
15,488 KB
testcase_05 AC 56 ms
15,360 KB
testcase_06 AC 58 ms
15,360 KB
testcase_07 AC 62 ms
15,360 KB
testcase_08 AC 60 ms
15,360 KB
testcase_09 AC 58 ms
15,360 KB
testcase_10 AC 57 ms
15,360 KB
testcase_11 AC 57 ms
15,360 KB
testcase_12 AC 58 ms
15,360 KB
testcase_13 AC 59 ms
15,360 KB
testcase_14 AC 62 ms
15,360 KB
testcase_15 AC 95 ms
16,256 KB
testcase_16 TLE -
testcase_17 AC 105 ms
17,664 KB
testcase_18 TLE -
testcase_19 AC 814 ms
22,400 KB
testcase_20 TLE -
testcase_21 WA -
testcase_22 AC 151 ms
16,768 KB
testcase_23 AC 554 ms
24,832 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::z" used only once: possible typo at Main.pl line 36.
Main.pl syntax OK

ソースコード

diff #

($n,$d,$k)=glob<>;
@x=<>;

for$i(0..0x1ffff){
	$x0=$x[$i<<1|0];
	$x1=$x[$i<<1|1];
	$x[$i|0x20000]=$x0<$x1?$x0:$x1;
}

sub f{
	my($i,$j)=@_;
#print("f($i,$j)");
	my$b=1e9;
	if($i&1){
		$b=$x[$i++];
	}
	if(!($j&1)){
		$b=$x[$j] if $b>$x[$j];
		--$j;
	}
	if($i<$j){
		$i=0x20000|$i>>1;
		$j=0x20000|$j>>1;
		$b1=f($i,$j);
		$b=$b1 if $b>$b1;
	}
	$b;
}

#print">>",f(0,1),$/;
#print">>",f(1,2),$/;
#exit(1);

$b=0;
for$i(0..$n-1){
	$z=f($j=$i-$d<0?0:$i-$d,$i);
#print"$i:$z\n";
	$c=$x[$i]- f($j=$i-$d<0?0:$i-$d,$i);
	$b=$c,$j1=$i if $b<$c;
#print"$b\n";
}
if($b){
	for($j1-$d..$j1){
		$j0=$_,last if $b==$x[$j1]-$x[$_]
	}
	print $b*$k,$/,$j0,$",$j1;
}else{
	print 0;
}
	
0