zoukankan      html  css  js  c++  java
  • 解题报告 之 HDU5305 Friends

    解题报告 之 HDU5305 Friends


    Description

    There are  people and  pairs of friends. For every pair of friends, they can choose to become online friends (communicating using online applications) or offline friends (mostly using face-to-face communication). However, everyone in these  people wants to have the same number of online and offline friends (i.e. If one person has  onine friends, he or she must have  offline friends too, but different people can have different number of online or offline friends). Please determine how many ways there are to satisfy their requirements. 
     

    Input

    The first line of the input is a single integer , indicating the number of testcases. 

    For each testcase, the first line contains two integers  and , indicating the number of people and the number of pairs of friends, respectively. Each of the next  lines contains two numbers  and , which mean  and  are friends. It is guaranteed that  and every friend relationship will appear at most once. 
     

    Output

    For each testcase, print one number indicating the answer.
     

    Sample Input

    2 3 3 1 2 2 3 3 1 4 4 1 2 2 3 3 4 4 1
     

    Sample Output

    0 2

    题目大意:有n个人,当中有m对朋友。既可能是网络上的朋友,也可能是现实中的朋友。如今要求每一个人网络上的朋友和现实中的朋友数量相等。但每一个人之前的朋友数量能够是不一样的,如今让你决定每一对朋友是网络朋友还是现实中的朋友来满足这个要求。问有分配方法?

    分析:这道题就暴力搜索就能够了,遍历每一条边,去决定是网络朋友和现实朋友。注意剪枝假设当前边的两点中某一点的某种朋友已经超过了它关系的一半,则不用再继续搜索,由于已经不可能了。

    上代码:
    #include<iostream>
    #include<cstdio>
    #include<algorithm>
    #include<cstring>
    
    using namespace std;
    typedef long long ll;
    
    int de[10];
    int in[100], out[100];
    int on[10], off[10];
    int ans, m, n;
    
    
    void dfs( int u )
    {
    	if(u == m + 1)
    	{
    		for(int i = 1; i <= n; i++)
    		{
    			if(on[i] != off[i]) return;
    		}
    		ans++;
    		return;
    	}
    
    	if(on[in[u]] < de[in[u]] / 2 && on[out[u]] < de[out[u]]/2)
    	{
    		on[in[u]]++; on[out[u]]++;
    		dfs( u + 1 );
    		on[in[u]]--; on[out[u]]--;
    	}
    
    
    	if(off[in[u]] < de[in[u]] / 2 && off[out[u]] < de[out[u]]/2)
    	{
    		off[in[u]]++; off[out[u]]++;
    		dfs( u + 1 );
    		off[in[u]]--; off[out[u]]--;
    	}
    }
    
    int main()
    {
    	int kase;
    
    	scanf( "%d", &kase );
    	while(kase--)
    	{
    		memset( de, 0, sizeof de );
    		memset( on, 0, sizeof on );
    		memset( off, 0, sizeof off );
    		ans = 0;
    
    		scanf( "%d%d", &n, &m );
    		for(int i = 1; i <= m; i++)
    		{
    			scanf( "%d%d", &in[i], &out[i] );
    			de[in[i]]++; de[out[i]]++;
    		}
    
    		int flag = true;
    		for(int i = 1; i <= n; i++)
    		{
    			if(de[i] % 2 == 1)
    			{
    				printf( "0
    " );
    				flag = false;
    				break;
    			}
    		}
    
    		if(!flag) continue;
    
    		dfs( 1 );
    		printf( "%d
    ", ans );
    	}
    	return 0;
    }



  • 相关阅读:
    夜游遂宁滨江路
    易中天讲座十句人生感悟(发人深省,耐人寻味)
    遥望死海
    一直被忽略的成功之道:勤快并非优点,成功需要懒惰
    给别人以宽容,给自己以信心
    合理支配“财富”:经理人运用时间的12种典型模式
    三月的清晨
    学习的三重境界(想成功的人都不可错过)
    上班
    持续开发你的事业智慧:企业家保持冲锋势头的路径
  • 原文地址:https://www.cnblogs.com/yjbjingcha/p/7061445.html
Copyright © 2011-2022 走看看