记录编号 73336 评测结果 AAAAAAAAAA
题目名称 机房 最终得分 100
用户昵称 GravatarGDFRWMY 是否通过 通过
代码语言 Pascal 运行时间 0.128 s
提交时间 2013-10-21 12:50:35 内存使用 0.35 MiB
显示代码纯文本
var
a,b,c,d,e,i,j,m,n,x,y:longint;
k,f:array[0..25000]of longint;
begin
assign(input,'orz.in');
assign(output,'orz.out');
reset(input);  rewrite(output);
read(n,m);
for a:=1 to n do
readln(k[a]);
for a:=1 to n do
f[a]:=9999999;
for a:=0 to n-1 do
begin
x:=0; y:=0;
for b:=a+1 to n do
begin
if k[b]=2 then inc(y);
if k[b]=1 then inc(x);
if (abs(x-y)<=m)or(x=0)or(y=0) then
begin
if f[b]>f[a]+1   then
f[b]:=f[a]+1;
end;

end;

end;
writeln(f[n]);
close(input);
close(output);
end.