码迷,mamicode.com
首页 > 其他好文 > 详细

机器翻译(noip2010)

时间:2014-09-20 18:05:39      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   for   数据   div   

分析:该题是经典的队列题目,直接用队列实现就可以。如果数据范围大一些的话还可hash判重!

        这可以说是一道送分的题目,但是还有粗心的学生会在这里失分,主要原因是数组的范围定义的不合适,因为空间足够用,在考试中数据范围要稍大一些。当然还有个别同学是因为模拟失误了,这种送分题目我只能说,一定要多对拍几组特殊数据,保证得满分才好!

bubuko.com,布布扣
var
  m,n,sum:longint;
  q:array[0..1000] of longint;
  head,tail:longint;
  procedure init;
  var bo:boolean;
  i,j,x:longint;
  begin
    readln(m,n);
    head:=0;tail:=0; sum:=0;
    for i:=1 to n do
      begin
        bo:=false;
        read(x);
        for j:=head+1 to   tail do
          if q[j]=x then
            begin   bo:=true;   break; end;
        if not bo  then
          begin
            if  tail-head>=M then  inc(head);
            inc(tail);  q[tail]:=x;inc(sum);
          end
      end;
      writeln(sum);
  end;
begin
  assign(input,translate.in);reset(input);
  assign(output,translate.out); rewrite(output);
  init;
  close(input); close(output);
end.
View Code

 

机器翻译(noip2010)

标签:style   blog   http   color   os   ar   for   数据   div   

原文地址:http://www.cnblogs.com/ssfzmfy/p/3983372.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!