oj--九度oj---1450

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oj--九度oj---1450相关的知识,希望对你有一定的参考价值。

 

#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的主要内容,如果未能解决你的问题,请参考以下文章

九度oj 题目1397:查找数段

九度OJ-题目1009:二叉搜索树

九度OJ平台练习 —— 题目1009

九度oj1002

oj---九度oj---1061

oj---九度oj---1433