比赛 10.10.18noip模拟 评测结果 WWAWWWWWWW
题目名称 罪犯问题A 最终得分 10
用户昵称 reamb 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-10-18 21:06:34
显示代码纯文本
program zhuifanwentia;
var
  a,b:array[1..1000]of longint;
  i,n,m,max,min,x:longint;
begin
  assign (input,'criminala.in');
  reset (input);
  assign (output,'criminala.out');
  rewrite (output);
    readln (n,m);
    for i:=1 to m do
    begin
      readln (x);
      if x>0 then
        a[x]:=a[x]+1
      else
        b[-x]:=b[-x]+1
    end;
    for i:=1 to n do
      if a[i]>=b[i] then
        max:=max+a[i];
    min:=m-max;
    writeln (max);
    writeln (min);
  close (input);
  close (output)
end.