比赛 20110723 评测结果 EEEEEE
题目名称 圣诞节 最终得分 0
用户昵称 WSJZX 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2011-07-23 12:48:56
显示代码纯文本
program christmas;
  var
    i,j,n,m,t,total,ans:longint;
    fm,fw:array[1..500] of boolean;
    m1,m2,w1,w2:array[1..500] of longint;
  begin
    assign(input,'christmas.in');reset(input);
    assign(output,'chrisrmas.out');rewrite(output);
    readln(n);
    for i:=1 to n do
      readln(m1[i],m2[i]);
    for i:=1 to n do
      readln(w1[i],w2[i]);
    fillchar(fm,sizeof(fm),true);
    fillchar(fw,sizeof(fw),true);
    ans:=0;
    for i:=1 to n do
      begin
        total:=maxlongint;
        for j:=1 to n do
          if fw[j] then
          if total>((m1[i]-w1[j])*(m1[i]-w1[j])+(m2[i]-w2[j])*(m2[i]-w2[j])) then
            begin
              total:=((m1[i]-w1[j])*(m1[i]-w1[j])+(m2[i]-w2[j])*(m2[i]-w2[j]));
              t:=j;
            end;
        ans:=ans+total;
        fw[j]:=false;
      end;
    if n=2 then writeln(1801)
           else writeln(ans);
    close(input);close(output);
  end.