比赛 20101118 评测结果 AWAWWAAWAW
题目名称 分班 最终得分 50
用户昵称 苏轼 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-11-18 08:36:02
显示代码纯文本
program groupa(input,output);

var
  n,i,j,l,r,ans,tmp:longint;
  gp:array[1..10000]of longint;

begin
  assign(input,'groupa.in');
  reset(input);
  assign(output,'groupa.out');
  rewrite(output);

  readln(n);

  for i:=1 to n do
    read(gp[i]);

  readln(l,r);

  for i:=1 to n do
    if gp[i]<l then
    begin
      for j:=1 to n do
        if gp[j]>r then
        begin
          tmp:=gp[j]-l;
          if l-gp[i]<tmp then
            tmp:=l-gp[i];

          gp[j]:=gp[j]-tmp;
          gp[i]:=gp[i]+tmp;
          ans:=ans+tmp;

          if gp[i]>=l then
            break;
        end;

      for j:=1 to n do
        if gp[j]>l then
        begin
          tmp:=gp[j]-l;
          if l-gp[i]<tmp then
            tmp:=l-gp[i];

          gp[j]:=gp[j]-tmp;
          gp[i]:=gp[i]+tmp;
          ans:=ans+tmp;

          if gp[i]>=l then
            break;
        end;
    end
    else if gp[i]>r then
    begin
      for j:=1 to n do
        if gp[j]<l then
        begin
          tmp:=r-gp[j];
          if gp[i]-r<tmp then
            tmp:=gp[i]-r;

          gp[j]:=gp[j]+tmp;
          gp[i]:=gp[i]-tmp;
          ans:=ans+tmp;

          if gp[i]<=r then
            break;
        end;

      for j:=1 to n do
        if gp[j]<r then
        begin
          tmp:=r-gp[j];
          if gp[i]-r<tmp then
            tmp:=gp[i]-r;

          gp[j]:=gp[j]+tmp;
          gp[i]:=gp[i]-tmp;
          ans:=ans+tmp;

          if gp[i]<=r then
            break;
        end;
    end;

  for i:=1 to n do
    if (gp[i]>r)or(gp[i]<l) then
      ans:=-1;

  writeln(ans);

  close(input);
  close(output);
end.