POJ1081--You Who?

You Who?
Time Limit: 1000MSMemory Limit: 10000K
Total Submissions: 702Accepted: 249
Description
 
On the first day of first grade at Friendly Elementrary School, it is customary for each student to spend one minute talking to every classmate that he or she does not already know. When student Bob sees an unfamilar face, he says ``You who?'' A typical response is ``Me Charlie, you who?'' Then Bob says, ``Me Bob!'' and they talk for a minute. It's very cute. Then, after a minute, they part and each looks for another stranger to greet. This takes time. In class of twenty-nine or thirty mutual strangers, it takes 29 minutes; time that, according to teachers, could be better spent learning the alphabet. Of course, it is rare to have a first grade class where nobody knows anyone else; there are neighbors and playmates who already know each other, so they don't have to go through the get-to-know-you minutes with each other. 
The two first grade teachers have requested that, to save time, students be allocated to their two classes so that the difference in the sizes of the classes is at most one, and the time it takes to complete these introductions is as small as possible. There are no more than 60 students in the incoming first grade class. 
 
How can the assignment of students to classes be made? Your job is to write the software that answers the question. 
 
Input
 
The school records include information about these student friendships, represented as lists of numbers. If there are 29 students, then they are represented by the numbers 1 to 29. The record for a single student includes, first, his/her student identification number (1 to 29, in this example), then the number of his/her acquaintances, then a list of them in no particular order. So, for example, this record 
17 4 5 2 14 22 
 
indicates that student 17 knows 4 students: 5, 2, and so on. The records for all the students in the incoming class are represented as the list of numbers that results from concatenating all the student records together. Spaces and line breaks are irrelevent in this format. Thus, this 
 
1 1 2 2 1 1 
 
is a whole database, indicating that there are only two students in the incoming class, and they know each other; and this 
 
1 2 3 4 
2 2 3 4 
3 2 1 2 
4 2 1 2 
 
indicates that 1 doesn't know 2, and 3 doesn't know 4, but all other pairs know each other. 
 
The database has been checked for consistency, so that if A knows B, then B knows A. 
Output
 
Your output should begin with a number that tells how long it will take to complete the introductions in the best possible legal class assignment. For the simple two student problem above, the only legal answer is 
 
0
Sample Input
 
1 2 3 4 
2 2 3 4 
3 2 1 2 
4 2 1 2 
Sample Output
 
0
Hint
 

To make this problem more tractable, the following changes are being made. There will be exactly two classes. There will be no more that 30 students. The students will be divided as evenly as possible between the classes. The loneliness of a student is the number of students in his class whom he does not know. You are to arrange the classes to minimize the loneliness of the loneliest student. for the sample data ,you can arrange 1 and 3 to the first class,and 2 and 4 to the second class,then they need no time to know each other.


#include<iostream>
#include<fstream>
#include<cmath>
#include<cstdlib>
using namespace std;

ifstream fin("C:\\data36.in");
ofstream fout("C:\\data37.out");

int partner[31][31];
int temp1[15],temp2[15];
int N;
int minmaxsolonum;

//找出分組中互相不認識的人的對數
int findSoloNum(int* arr,int num)
{
	int cnt=0;
	for(int i=0;i<num-1;++i)
	{
		for(int j=i+1;j<num;++j)
		{
			if(!partner[arr[i]][arr[j]])
				++cnt;
		}
	}
	return cnt;
}


void solution(int index,int num1,int num2)
{
	//只是因爲兩組的人數只差不能大於一,所以設一組有ceil(N/2)個人,二組有floor(N/2)個人,但限定了兩組的人數之後,在總人數爲偶數的時候,會導致重複遍歷。但因爲總人數不超過30,就算重複遍歷也沒什麼關係
	if(num1==ceil(N/2)&&num2==floor(N/2))
	{
		int solonum1=findSoloNum(temp1,num1);
		int solonum2=findSoloNum(temp2,num2);
		//找出兩組分組中最大的互不認識的人的對數,並和保存值minmaxsolonum相比較,並把較小值賦給minmaxsolonum;
		int maxsolonum=solonum1>solonum2?solonum1:solonum2;
		if(minmaxsolonum>maxsolonum)
		{
			minmaxsolonum=maxsolonum;
		}
		return;
	}
	else if(num1>ceil(N/2)||num2>floor(N/2))
	{
		return;
	}
	//這是把第index個人劃給一組,找出把第index個人劃給一組時最小的minmaxsolonum;
	temp1[num1]=index;
	solution(index+1,num1+1,num2);
	//然後把第index個人劃給二組,找出吧第index個人劃給二組時最小的minmaxsolonum;
	temp2[num2]=index;
	solution(index+1,num1,num2+1);
	//考慮完上面兩種情況,所有的分組都已經遍歷了,此時的minmaxsolonum值就是最小的minmaxsolonum,可以輸出了
}

int main()
{
	int index,cnt,part;
	N=0;
	minmaxsolonum=1000;
	//初始化圖
	memset(partner,0,sizeof(partner));
	while(fin>>index)
	{
		fin>>cnt;
		++N;
		for(int i=0;i<cnt;++i)
		{
			fin>>part;
			partner[index][part]=1;
		}
	}
	solution(1,0,0);
	cout<<minmaxsolonum<<endl;
	system("pause");
	return 0;
}


發佈了48 篇原創文章 · 獲贊 1 · 訪問量 3萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章