北大poj-1081
You Who?
Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 801 | Accepted: 273 |
Description
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
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
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
我本来的程序中有考虑最大不认识的人数是否需要加1的情况,结果被判wrong。
最近找了个当年比赛的标准程序,发现其本意还真是只要找所有分组情况中,两组里最大不认识的人数最小的那个情况即可。
并且原题的测试数据也是这个:
Judge's Input
1 0
2 0
3 0
4 0
5 0
Judge's Output
2
2 1 2
3 3 4 5
可能编题目的作者也没有料到有这个(浅显的)问题,于是整个背景叙述就显得如此荒诞了。
POJ简化题目——班级的输出免了,但误人的背景留了下来。 顺便说一下,标程是用非常复杂的位运算实现的,这样和人多人少关系就不大了。
总人数最多是30个(于是每个人与他人的关系、每个班的组成(最多15个人)都可以用一个unsigned表示),算法就是穷举。 分析:题目对我来说感觉蛮难理解的,可能是因为数学太弱?这个题目数据比较弱,poj上最多4个students,所以算是水题了。
/*
1 2 3 4
2 2 3 4
3 2 1 2
4 2 1 2
*/ #include "stdio.h"
#include "stdlib.h"
#include "string.h" #define MAX_STUDENT 30 int gwFriendList[MAX_STUDENT+1][MAX_STUDENT+1];
int gwdivide[MAX_STUDENT+1];
int gwStudentNum; int MAX(int a, int b)
{
return (a>b) ? a : b;
} int MIN(int a, int b)
{
return (a>b) ? b : a;
} int strangeNum(int wboy, int class[])
{
int i = 0;
int j = 0;
int lone = 0;
for(i=1; i<=class[0]; i++)
{
if(wboy == class[i])
continue;
for(j=1; j<=gwFriendList[class[i]][0]; j++)
{
if(wboy == gwFriendList[class[i]][j])
break;
}
if(j > gwFriendList[class[i]][0])
lone++;
}
return lone;
} void exchangeValue(int *a, int *b)
{
int tmp;
tmp = *a;
*a = *b;
*b = tmp;
} void buildClass(int class[], int flag)
{
int i = 0;
int j = 0;
for(i=1; i<=gwStudentNum; i++)
{
if(gwdivide[i] == flag)
class[++j] = i;
}
class[0] = j;
} int calcLone(int class[])
{
int i = 0;
int lone = 0;
for(i=1; i<=class[0]; i++)
{
lone = MAX(lone, strangeNum(class[i], class));
}
return lone;
} int Lone()
{
int class1[MAX_STUDENT+1];
int class2[MAX_STUDENT+1];
buildClass(class1, 1);
buildClass(class2, 0);
return MAX(calcLone(class1), calcLone(class2));
} int divideClass(int now, int max)
{
int wlone = 30;
int i = 0;
if(now == max)
return Lone();
else
{
wlone = MIN(wlone, divideClass(now+1, max));
for(i=now+1; i<=max; i++)
{
if(gwdivide[i] != gwdivide[max])
{
exchangeValue(&gwdivide[i], &gwdivide[max]);
wlone = MIN(wlone, divideClass(i, max));
exchangeValue(&gwdivide[i], &gwdivide[max]);
}
}
return wlone;
}
} int main()
{
int i = 0;
int j = 0;
int wCount = 0;
int lone = 0; while(1)
{
if(EOF == scanf("%d", &j))
break;
scanf("%d", &wCount);
gwFriendList[j][0] = wCount;
gwStudentNum++;
for(i=1; i<=wCount; i++)
{
scanf("%d", &gwFriendList[j][i]);
}
wCount = 0;
}
for(i=1; i<=(gwStudentNum/2); i++)
{
gwdivide[i] = 1;
} lone = divideClass(1,gwStudentNum); printf("%d\n", lone);
return 0;
}
北大poj-1081的更多相关文章
- 北大POJ题库使用指南
原文地址:北大POJ题库使用指南 北大ACM题分类主流算法: 1.搜索 //回溯 2.DP(动态规划)//记忆化搜索 3.贪心 4.图论 //最短路径.最小生成树.网络流 5.数论 //组合数学(排列 ...
- poj 1081 To The Max
To The Max Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total ...
- 【Java】深深跪了,OJ题目Java与C运行效率对比(附带清华北大OJ内存计算的对比)
看了园友的评论之后,我也好奇清橙OJ是怎么计算内存占用的.重新测试的情况附在原文后边. -------------------------------------- 这是切割线 ----------- ...
- POJ 1861 Network (Kruskal算法+输出的最小生成树里最长的边==最后加入生成树的边权 *【模板】)
Network Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 14021 Accepted: 5484 Specia ...
- 各大OJ
北大POJ 杭电HDU 浙大ZOj 蓝桥杯 PAT
- leetcode学习笔记--开篇
1 LeetCode是什么? LeetCode是一个在线的编程测试平台,国内也有类似的Online Judge平台.程序开发人员可以通过在线刷题,提高对于算法和数据结构的理解能力,夯实自己的编程基础. ...
- OJ题目JAVA与C运行效率对比
[JAVA]深深跪了,OJ题目JAVA与C运行效率对比(附带清华北大OJ内存计算的对比) 看了园友的评论之后,我也好奇清橙OJ是怎么计算内存占用的.重新测试的情况附在原文后边. ----------- ...
- C++ 指针常见用法小结
1. 概论 2.指针基础 3. 指针进阶 4. 一维数组的定义与初始化 5. 指针和数组 6. 指针运算 7. 多维数组和指针 8. 指针形参 9. 数组形参 10. 返回指针和数组 11. 结语 ...
- 几个比較好的IT站和开发库官网
几个比較好的IT站和开发库官网 1.IT技术.项目类站点 (1)首推CodeProject,一个国外的IT站点,官网地址为:http://www.codeproject.com,这个站点为程序开发人员 ...
- C语言程序设计100例之(10):最大公约数
例10 最大公约数 问题描述 有三个正整数a,b,c(0<a,b,c<10^6),其中c不等于b.若a和c的最大公约数为b,现已知a和b,求满足条件的最小的c. 输入数据 第 ...
随机推荐
- ajax基础1
AJAX = Asynchronous JavaScript and XML(异步的 JavaScript 和 XML). AJAX 是与服务器交换数据并更新部分网页的艺术,在不重新加载整个页面的情况 ...
- HTTP历程
原文http://www.ruanyifeng.com/blog/2016/08/http.html 1.HTTP/0.9 HTTP是基于TCP/IP协议的应用层协议.它不涉及数据包传输,主要规定了客 ...
- 2014——>2015,我的薪资依然是4.5
悄悄的,2014离开了,带走了我的青春中的一年.这一年,我才毕业,这一年,我又混掉了...... 总想写点什么,可真正到写的时候,却发现自己文笔是这样的不堪,也许是缺少锻炼的缘故,也许自己天生就不善言 ...
- android webview远程调试
H5的调试的方式一般用chrome的emulator就好,可是遇到APP就拙计了.这时候还得用远程调试,远程调试很给力,不过目前网上还没有好的文章讲解,要好好的把其配置下来还是非常有难度的,今天折腾了 ...
- socket:通常每个套接字地址(协议/网络地址/端口)只允许使用一次
有两种解决方法,一种是加入try{}catch(){},程序就不会抱错了:一种是在设置好监听SOCKET后,将SOCKET的属性设置为可重复使用地址,如://创建监听SOCKET socketList ...
- 每天一个percona 工具 --- pt-kill
主要用途:pt-kill是用来kill MySQL连接的一个工具,在MySQL中因为空闲连接较多导致超过最大连接数,或某个有问题的sql导致mysql负载很高时,需要将其KILL掉来保证服务器正常运行 ...
- WinForm 菜单和工具栏
菜单和工具栏: 1.MenuStrip:顶部菜单 优先级最高,默认在最顶部 (1)分割线:a.打一个减号 “-” b.右键插入Separator (2)点击事件:每 ...
- Redis常用命令入门2:散列类型
散列命令 散列类型的键值其实也是一种字典解耦,其存储了字段和字段值的映射,但字段值只能是字符串,不支持其他数据类型,所以说散列类型不能嵌套其他的数据类型.一个散列类型的键可以包含最多2的32次方-1个 ...
- 每个部门绩效成绩第二名 sql server 查询 ( 替代 not in )
原题: 集团中有多个部门,部门底下有多个员工,求每个部门绩效分数排名第二的人员,数据表结构如下: DEPAR NAME SCORE A ...
- 【基本技能篇】>>第3篇《暗时间_指导学习的方法论——心得》
暗时间——指导学习的方法论 ——2016年2月11日 打造自己的核心竞争力:①专业领域技能:②跨领域的技能(解决问题的能力,创新思维,判断与决策能力,表达沟通能力等等):③学习能力,持续学习和思考新知 ...