记录编号 21225 评测结果 AAAAAAAAAA
题目名称 懒人的工作 最终得分 100
用户昵称 Gravatar王者自由 是否通过 通过
代码语言 Pascal 运行时间 0.044 s
提交时间 2010-11-08 19:53:41 内存使用 0.23 MiB
显示代码纯文本
program lazy;
var i,j,k,n,p:longint;
  a,b:array[1..10000] of longint;
  f:array[1..10001] of longint;
procedure sort(l,r:longint);
var i,j,x,t:longint;
begin
  i:=l; j:=r; x:=a[(l+r) div 2];
  repeat
    while a[i]>x do inc(i);
    while x>a[j] do dec(j);
    if not(i>j) then
    begin
     t:=a[i]; a[i]:=a[j]; a[j]:=t;
     t:=b[i]; b[i]:=b[j]; b[j]:=t;
     inc(i); dec(j);
    end;
  until i>j;
  if l<j then sort(l,j);
  if i<r then sort(i,r);
end;
begin
  assign(input,'lazy.in'); reset(input);
  assign(output,'lazy.out'); rewrite(output);
  read(n,k);
  for i:=1 to k do read(a[i],b[i]);
  sort(1,k);
  p:=1;
  fillchar(f,sizeof(f),0);
  for i:=n downto 1 do
    if a[p]=i then
    begin
      f[i]:=f[a[p]+b[p]];
      inc(p);
      while a[p]=i do
      begin
        if f[i]<f[a[p]+b[p]] then f[i]:=f[a[p]+b[p]];
        inc(p);
      end;
    end
    else f[i]:=f[i+1]+1;
  writeln(f[1]);
  close(input); close(output);
end.