| Time Limit: 1000MS | Memory Limit: 10000K | |
| Total Submissions: 1447 | Accepted: 539 |
Description
- Always shut open doors behind you immediately after passing through
- Never open a closed door
- 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.
Input
A single data set has 3 components:
- 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).
- 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!
- 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.
Output
Sample Input
START 1 2 1 END START 0 5 1 2 2 3 3 4 4 END START 0 10 1 9 2 3 4 5 6 7 8 9 END ENDOFINPUT
Sample Output
YES 1 NO YES 10
#include<iostream> #include<cstring> #include<cstdio> #include<string> using namespace std; #define MAXN 100 char str[50]; int counts[MAXN]; int s,n; int a,b; int len; void init() { memset(counts,0,sizeof(counts)); } void solve() { char ch[255]; len=0; int p=0; int temp; for(int i=0;i<n;i++) { cin.getline(ch,255); p=0; while(sscanf(ch+p,"%d",&temp)==1) { len++; counts[temp]++; counts[i]++; while(ch[p]!=0 && ch[p]==' ') p++; while(ch[p]!=0 && ch[p]!=' ') p++; } } cin.getline(str,50); a=b=0; for(int i=0;i<n;i++) { if(counts[i]%2==0) a++; else b++; } if(b==0 && s==0) cout<<"YES "<<len<<endl; else if(counts[s]%2==1 && counts[0]%2==1 && b==2 && s!=0) cout<<"YES "<<len<<endl; else cout<<"NO"<<endl; } int main() { char ch[255],tp[20]; while(1) { cin.getline(ch,255); if(ch[0]=='S') { sscanf(ch,"%s%d%d",tp,&s,&n); init(); solve(); } else break; } return 0; }
707




被折叠的 条评论
为什么被折叠?



