codevs1027

题目地址:http://codevs.cn/problem/1027/

代码:

var
w:array[1..20,1..20] of boolean;
ID:array[1..20] of string;
nm,ans:array[1..20] of string;
room2,used:array[1..20] of boolean;
r,tr:array[1..20] of longint;
N,i,j,p,tmp:longint;
cc:char;
ss:string;
function checkname(s:string):longint;
var
i:longint;
begin
for i:=1 to p do
  if nm[i]=s then
   exit(i);
inc(p);
nm[p]:=s;
checkname:=p;
end;
function checkID(s:string):longint;
var
i:longint;
begin
for i:=1 to n do
  if ID[i]=s then
   exit(i);
end;
function dfs(p:longint):boolean;
var
i:longint;
begin
if p=0 then
  exit(false);
for i:=1 to n do
  if w[p,i] and not(used[i]) then
  begin
   used[i]:=true;
   if (r[i]=0) or dfs(r[i]) then
   begin
    r[i]:=p;
    exit(true);
   end;
  end;
dfs:=false;
end;
begin
readln(N);
for i:=1 to n do
  for j:=1 to n do
   w[i,j]:=true;
for i:=1 to n-1 do
begin
  setlength(ID[i],20);
  read(cc);j:=0;
  while cc<>' ' do
  begin
   inc(j);
   ID[i][j]:=cc;
   read(cc);
  end;
  setlength(ID[i],j);
end;
readln(ID[n]);
readln(ss);
while ss<>'Q' do
begin
  case ss[1] of
  'E':begin
    delete(ss,1,2);
    room2[checkname(ss)]:=true;
   end;
  'L':begin
    delete(ss,1,2);
    room2[checkname(ss)]:=false;
   end;
  'M':begin
    delete(ss,1,2);
    tmp:=checkID(ss);
    for i:=1 to n do
     if not room2[i] then
     begin
      w[tmp,i]:=false;
     //writeln('del ',tmp,' ',i); //debug
     end;
   end;
  end;
  readln(ss);
end;
for i:=1 to n do
begin
  fillchar(used,sizeof(used),0);
  dfs(i);
end;
for i:=1 to n do
  if r[i]>0 then
  begin
   tr:=r;
   w[r[i],i]:=false;
   r[i]:=0;
   fillchar(used,sizeof(used),0);
   if dfs(tr[i]) then
    ans[i]:=nm[i]+':???'
   else
    ans[i]:=nm[i]+':'+ID[tr[i]];
   r:=tr;
   w[r[i],i]:=true;
  end;
for i:=1 to n-1 do
  for j:=i+1 to n do
   if ans[i]>ans[j] then
   begin
    ss:=ans[i];
    ans[i]:=ans[j];
    ans[j]:=ss;
   end;
for i:=1 to n do
  writeln(ans[i]);
end.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值