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

NYOJ 120 校园网络

时间:2014-08-22 15:59:08      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   div   代码   

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=120

 

思路:超级水题~,结果 = 出度为0的点的数量+入度为0的点的数量。。

 

代码:

#include <iostream>
#include <cstring>
using namespace std;

int book1[101];
int book2[101]; 

int main()
{
    int num;
    int n;
    int temp;
    cin>>num;
    int res;
    while(num--)
    {
        res = 0;
        cin>>n;
        memset(book1,0,sizeof(book1));        
        memset(book2,0,sizeof(book2));
        for(int i=1;i<=n;i++)
        {
            while(cin>>temp&&temp!=0)
            {
                book1[temp]++;
                book2[i]++;
            }
        }
        
        for(int i=1;i<=n;i++)
        {
            if(book1[i]==0)
                res++;
            if(book2[i]==0)
                res++; 
        }
        cout<<res<<endl;
    }
    return 0;
} 

 

NYOJ 120 校园网络

标签:style   blog   http   color   os   io   for   div   代码   

原文地址:http://www.cnblogs.com/ltwy/p/3929330.html

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