poj1300 解題報告

來源:互聯網
上載者:User

Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 20000/10000K (Java/Other)Total Submission(s) : 30   Accepted Submission(s) : 16Problem DescriptionYou are a butler in a large mansion. This mansion has so many rooms that they are merely referred to by number (room 0, 1, 2, 3, etc...). Your master is a particularly absent-minded lout and continually leaves doors open throughout a particular floor of the house. Over the years, you have mastered the art of traveling in a single path through the sloppy rooms and closing the doors behind you. Your biggest problem is determining whether it is possible to find a path through the sloppy rooms where you: 

  1. Always shut open doors behind you immediately after passing through 
  2. Never open a closed door 
  3. End up in your chambers (room 0) with all doors closed 

In this problem, you are given a list of rooms and open doors between them (along with a starting room). It is not needed to determine a route, only if one is possible.

 


InputInput to this problem will consist of a (non-empty) series of up to 100 data sets. Each data set will be formatted according to the following description, and there will be no blank lines separating data sets. A single data set has 3 components: 

  1. Start line - A single line, "START M N", where M indicates the butler's starting room, and N indicates the number of rooms in the house (1 <= N <= 20). 
  2. Room list - A series of N lines. Each line lists, for a single room, every open door that leads to a room of higher number. For example, if room 3 had open doors to rooms 1, 5, and 7, the line for room 3 would read "5 7". The first line in the list represents room 0. The second line represents room 1, and so on until the last line, which represents room (N - 1). It is possible for lines to be empty (in particular, the last line will always be empty since it is the highest numbered room). On each line, the adjacent rooms are always listed in ascending order. It is possible for rooms to be connected by multiple doors! 
  3. End line - A single line, "END" 

Following the final data set will be a single line, "ENDOFINPUT". Note that there will be no more than 100 doors in any single data set.

 


OutputFor each data set, there will be exactly one line of output. If it is possible for the butler (by following the rules in the introduction) to walk into his chambers and close the final open door behind him, print a line "YES X", where X is the number of doors he closed. Otherwise, print "NO". 


Sample Input

START 1 21ENDSTART 0 51 2 2 3 3 4 4ENDSTART 0 101 923456789ENDENDOFINPUT
 


Sample Output

YES 1NOYES 10水題,連通不用判,
#include<iostream>#include<stdio.h>#include<queue>#include<string.h>using namespace std;int in[105],down[105];char str[300];int fin(int a){     if(down[a]!=a)     {           down[a]=fin(down[a]);     }     return down[a];}int main (){       int i,m,n,j,sum,s,k;       bool zhe;      while(1)      {            scanf("%s",str);            if(!strcmp(str,"ENDOFINPUT"))                  break;            scanf("%d%d",&m,&n);            //printf("%d %d\n",m,n);            k=n;            for(i=0;i<102;i++)            {                  down[i]=i;                  in[i]=0;            }            gets(str);             memset(str,'\0',sizeof(str));             s=0;            for(j=0;j<n;j++)            {                  //printf("%d j",j);                  gets(str);                  //printf("%s\n",str);                  sum=0;                  for(i=0;str[i]!='\0';i++)                  {                        if(str[i]>='0'&&str[i]<='9')                        {                           sum=sum*10+str[i]-'0';                        }                        else                        {                          in[j]++;                          in[sum]++;                          //printf("%d\n",sum);                          int a=fin(j);                          int b=fin(sum);                          if(a!=b)                          {                              down[a]=b;                              k--;                          }                          sum=0;                          s++;                        }                  }                  if(sum!=0)                  {                        in[sum]++;                        in[j]++;                         int a=fin(j);                          int b=fin(sum);                          if(a!=b)                          {                              down[a]=b;                              k--;                          }                          s++;                          sum=0;                       // printf("%d\n",sum);                  }                   memset(str,'\0',sizeof(str));            }           // printf("%dk\n",k);           // if(k==1)            zhe=true;          //  else                 // zhe=false;                  if(zhe)                  {            if(m!=0)            {            for(i=0;i<n;i++)            {                  if(i==m||i==0)                  {                      if(!(in[i]%2))                      {                        zhe=false;                        break;                      }                  }                  else                  {                        if(in[i]%2)                        {                              zhe=false;                              break;                        }                  }            }            }            else            {            for(i=0;i<n;i++)            {                  if(in[i]%2)                  {                        zhe=false;                        break;                  }            }            }                  }            if(zhe)            {                  printf("YES %d\n",s);            }            else            {                  printf("NO\n");            }           // printf("end\n");            gets(str);             memset(str,'\0',sizeof(str));      }      return 0;}

  • 上一篇:poj1116 Play on Words
  • 下一篇:poj2230 解題報告
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.