记录编号 134360 评测结果 AAAAA
题目名称 木棍 最终得分 100
用户昵称 Gravatar传奇 是否通过 通过
代码语言 Pascal 运行时间 0.331 s
提交时间 2014-10-29 22:05:49 内存使用 0.28 MiB
显示代码纯文本
program cojs1125;
type
  node=record
    li,wi:longint;
  end;
  atype=array[1..5000] of node;
var
  a,b:atype;
  f:array[0..10000] of longint;
  i,j,k,m,n,t:longint;
procedure qp(var a:atype; l,r:longint);
var
  i,j:longint;
  x,y:node;
begin
  i:=l; j:=r;
  x:=a[(l+r) div 2];
  repeat
    while (a[i].wi<x.wi)or((a[i].wi=x.wi)and(a[i].li<x.li)) do inc(i);
    while (a[j].wi>x.wi)or((a[j].wi=x.wi)and(a[j].li>x.li)) do dec(j);
    if i<=j then
      begin
        y:=a[i]; a[i]:=a[j]; a[j]:=y;
        inc(i); dec(j);
      end;
  until i>j;
  if j>l then qp(a,l,j);
  if i<r then qp(a,i,r);
end;
begin
  assign(input,'wooden.in');
  assign(output,'wooden.out');
  reset(input);
  rewrite(output);

  readln(n);
  for i:=1 to n do
    begin
      read(a[i].wi,a[i].li);
      b[i].wi:=a[i].li;
      b[i].li:=a[i].wi;
    end;
  k:=0;
  qp(a,1,n);
  qp(b,1,n);
  fillchar(f,sizeof(f),0);
  f[1]:=1;
  for i:=2 to n do
    begin
      for j:=1 to i-1 do
        if (a[i].li<a[j].li)and(f[i]<f[j]) then
          f[i]:=f[j];
      inc(f[i]);
    end;
  for i:=1 to n do
    if f[i]>k then
      k:=f[i];
  fillchar(f,sizeof(f),0);
  f[1]:=1;
  for i:=2 to n do
    begin
    for j:=1 to i-1 do
      if (b[i].li<b[j].li)and(f[i]<f[j]) then
       f[i]:=f[j];
    inc(f[i]);
    end;
  for i:=1 to n do
    if f[i]>t then
      t:=f[i];
  if k>t then
    k:=t;
  writeln(t);

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