码迷,mamicode.com
首页 > 其他好文 > 详细

oj--九度oj---1450

时间:2017-09-18 16:16:01      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:scan   name   bsp   else   pre   include   space   iostream   col   

 

#include<iostream>
#include<map>
#include<cstdio>
using namespace std;
map<string,int> M;
int in[1005];
int n;
int main(){
    while(scanf("%d",&n)!=EOF&&n!=0){
        M.clear();
        char str[20];
        string s;
        for(int i=0;i<1005;i++) in[i]=0;
        int idx=0;
        while(n--){
            scanf("%s",str);
            s=str;
            
            int idxa,idxb;
            if(M.find(s)==M.end()){
                idxa=idx;
                M[s]=idx++;
            }
            scanf("%s",str);
            s=str;
            if(M.find(s)==M.end()){
                idxb=idx;
                M[s]=idx++;
            }
            in[M[s]]++;
        }
        int cnt=0;
        for(int i=0;i<idx;i++){
            if(in[i]==0)
                cnt++;
        }
        if(cnt==1)
            printf("Yes\n");
        else printf("No\n");
    }
    return 0;
}

 

oj--九度oj---1450

标签:scan   name   bsp   else   pre   include   space   iostream   col   

原文地址:http://www.cnblogs.com/kprac/p/7543570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!