Hướng dẫn giải của Nối điểm


Chỉ dùng lời giải này khi không có ý tưởng, và đừng copy-paste code từ lời giải này. Hãy tôn trọng người ra đề và người viết lời giải.
Nộp một lời giải chính thức trước khi tự giải là một hành động có thể bị ban.

Lưu ý: Các code mẫu dưới đây chỉ mang tính tham khảo và có thể không AC được bài tập này

Code mẫu của ladpro98

program PUNCTE_AnhDuc;
uses    math;
const   maxv=1111;
        fi='';
        fo='';
        oo=trunc(1e9);
type    e=record
        x,y:longint;
        end;
var     q:array[1..4*maxv*maxv] of e;
        red:array[-maxv..maxv,-maxv..maxv] of boolean;
        maR,miR,maC,miC:array[-maxv..maxv] of longint;
        l,r,i,j,res,minx,miny,maxx,maxy,x,y:longint;
        u:e;
        inp,oup:text;

procedure push(x,y:longint);
begin
        red[x,y]:=true;
        inc(r);
        q[r].x:=x;
        q[r].y:=y;
        miR[x]:=min(miR[x],y);
        maR[x]:=max(maR[x],y);
        miC[y]:=min(miC[y],x);
        maC[y]:=max(maC[y],x);
end;

begin
        assign(inp,fi);reset(inp);
        assign(oup,fo);rewrite(oup);
        readln(inp,r);l:=1;
        for i:=1 to r do begin
                readln(inp,q[i].x,q[i].y);
                red[q[i].x,q[i].y]:=true;
                minx:=min(minx,q[i].x);miny:=min(miny,q[i].y);
                maxx:=max(maxx,q[i].x);maxy:=max(maxy,q[i].y);
        end;
        for i:=minx to maxx do miR[i]:=oo;
        for i:=minx to maxx do maR[i]:=-oo;
        for i:=miny to maxy do miC[i]:=oo;
        for i:=miny to maxy do maC[i]:=-oo;
        for i:=1 to r do begin
                x:=q[i].x;y:=q[i].y;
                miR[x]:=min(miR[x],y);
                maR[x]:=max(maR[x],y);
                miC[y]:=min(miC[y],x);
                maC[y]:=max(maC[y],x);
        end;
        while l<=r do begin
                u:=q[l];inc(l);
                if (u.x=miC[u.y]) or (u.x=maC[u.y]) then begin
                        for x:=miC[u.y] to maC[u.y] do
                        if not red[x,u.y] then push(x,u.y);
                end;
                if (u.y=miR[u.x]) or (u.y=maR[u.x]) then begin
                        for y:=miR[u.x] to maR[u.x] do
                        if not red[u.x,y] then push(u.x,y);
                end;
        end;
        for i:=minx to maxx do
        for j:=miny to maxy do
        if red[i,j] then inc(res);
        write(oup,res);close(oup);
end.

Code mẫu của RR

{$R+,Q+}
uses math;
const
  FINP='';
  FOUT='';
  MAXN=100001;
  MAXQ=10005;
var
  f1,f2:text;
  n,spt,first,last:longint;
  hang1,hang2,hang,cot1,cot2,cot:array[-1000..1000] of longint;
  inq:array[-1000..1000,1..2] of byte;
  qu,qt:array[1..MAXQ] of longint;
procedure openF;
begin
  assign(f1,FINP); reset(f1);
  assign(f2,FOUT); rewrite(f2);
end;
procedure closeF;
begin
  close(f1);
  close(f2);
end;
procedure inp;
var
  i,x,y:longint;
begin
  for i:=-1000 to 1000 do
    begin
      hang1[i]:=1010; hang2[i]:=-1010;
      cot1[i]:=1010; cot2[i]:=-1010;
    end;
  read(f1,n);
  for i:=1 to n do
    begin
      read(f1,x,y);
      cot1[x]:=min(cot1[x],y);
      cot2[x]:=max(cot2[x],y);
      hang1[y]:=min(hang1[y],x);
      hang2[y]:=max(hang2[y],x);
    end;
  for i:=-1000 to 1000 do hang[i]:=max(hang2[i]-hang1[i]+1,0);
  for i:=-1000 to 1000 do cot[i]:=max(cot2[i]-cot1[i]+1,0);
end;
procedure ans;
var
  sum,i:longint;
begin
  sum:=0;
  for i:=-1000 to 1000 do
    sum+=hang[i];
  writeln(f2,sum);
end;
procedure solve;
var
  i,u,t:longint;
begin
  first:=1; last:=4002; spt:=4002;
  for i:=-1000 to 1000 do begin qu[i+1001]:=i; qt[i+1001]:=1; end;
  for i:=-1000 to 1000 do begin qu[i+3002]:=i; qt[i+3002]:=2; end;
  fillchar(inq,sizeof(inq),0);
  while spt>0 do
    begin
      u:=qu[first]; t:=qt[first]; inq[u,t]:=0;
      inc(first); if first=MAXQ then first:=1; dec(spt);
      if (hang[u]=0) and (t=1) then continue;
      if (cot[u]=0) and (t=2) then continue;
      if t=1 then
        begin
          for i:=hang1[u] to hang2[u] do
          if (u<cot1[i]) or (u>cot2[i]) then
            begin
              cot1[i]:=min(cot1[i],u);
              cot2[i]:=max(cot2[i],u);
              cot[i]:=cot2[i]-cot1[i]+1;
              if inq[i,2]=0 then
                begin
                  inc(last); if last=MAXQ then last:=1; inc(spt);
                  qu[last]:=i; qt[last]:=2; inq[i,2]:=1;
                end;
            end;
        end
      else // t=2
        begin
          for i:=cot1[u] to cot2[u] do
          if (u<hang1[i]) or (u>hang2[i]) then
            begin
              hang1[i]:=min(hang1[i],u);
              hang2[i]:=max(hang2[i],u);
              hang[i]:=hang2[i]-hang1[i]+1;
              if inq[i,1]=0 then
                begin
                  inc(last); if last=MAXQ then last:=1; inc(spt);
                  qu[last]:=i; qt[last]:=1; inq[i,1]:=1;
                end;
            end;
        end;
    end;
end;
begin
  openF;
  inp;
  solve;
  ans;
  closeF;
end.

Bình luận

Hãy đọc nội quy trước khi bình luận.


Không có bình luận tại thời điểm này.