http://acm.hdu.edu.cn/showproblem.php?pid=1074

Doing Homework

Problem Description

Ignatius has just come back school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher gives him a deadline of handing in the homework. If Ignatius hands in the homework after the deadline, the teacher will reduce his score of the final test, 1 day for 1 point. And as you know, doing homework always takes a long time. So Ignatius wants you to help him to arrange the order of doing homework to minimize the reduced score.

Input

The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow. Each test case start with a positive integer N(1<=N<=15) which indicate the number of homework. Then N lines follow. Each line contains a string S(the subject's name, each string will at most has 100 characters) and two integers D(the deadline of the subject), C(how many days will it take Ignatius to finish this subject's homework). 
Note: All the subject names are given in the alphabet increasing order. So you may process the problem much easier.

Output

For each test case, you should output the smallest total reduced score, then give out the order of the subjects, one subject in a line. If there are more than one orders, you should output the alphabet smallest one.

 
Sample Input
 
2
Computer 3 3
English 20 1
Math 3 2
3
Computer 3 3
English 6 3
Math 6 3
 
Sample Output
 
2
Computer
Math
English
3
Computer
English
Math
 
Hint
 

In the second test case, both Computer->English->Math and Computer->Math->English leads to reduce 3 points, but the
word "English" appears earlier than the word "Math", so we choose the first order. That is so-called alphabet order.

 
题意:有N门课程的作业需要完成,每科作业都有一个deadline和一个消耗的时间,如果完成该门课程的作业的时间超过deadline,则每超过一天就会扣一分,求如何安排完成作业的次序才能使得完成所有作业扣的分数最少,最少分数是多少,并输出做作业的次序。
思路:第一道状压DP。一开始傻傻地想用贪心去做,后来发现不可行,想了挺久才看题解,原来是忌惮了很久的状压DP,因为有挺多的位运算搞不太懂,然后自己恶补了一下这方面知识,算作模模糊糊地搞懂了吧。因为N很小,可以枚举所有情况。5可以二进制表示为1001,从右往左数,该状态表示完成了第一门和第四门作业,就是用1或者0来表示该点有没有经过,然后枚举1<<i(i<N)就相当于枚举每一科的作业, now&i == 0 表示第i+1门作业没完成,now是已经完成了的作业的集合。就这样可以进行DP求解了。
 #include <cstdio>
#include <cstring>
#include <algorithm>
#include <string>
#include <map>
#include <stack>
#include <iostream>
using namespace std;
#define N 15
#define INF 100000000
struct node
{
int dead,cost;
char s[];
}course[N+];
struct P
{
int pre,score,now,time;
//pre记录完成某一个学科的作业之前已经完成的学科的作业的集合
//now记录当前更新的学科,pre和now用作路径输出
//score是减少的学分的总数,time是当前时间
}dp[<<N];
int vis[<<N]; int main()
{
int t;
cin>>t;
while(t--){
int n;
cin>>n;
memset(dp,,sizeof(dp));
memset(vis,,sizeof(vis));
for(int i=;i<n;i++){
cin>>course[i].s>>course[i].dead>>course[i].cost;
}
int en=(<<n)-;
for(int i=;i<en;i++){
for(int j=;j<n;j++){
int temp=<<j;
if((i&temp)==){//如果当前的学科作业还没完成
int cur=i|temp;//当完成该科作业时的情况
dp[cur].time=dp[i].time+course[j].cost;//当前使用的时间
int b=dp[i].time+course[j].cost-course[j].dead;
if(b<) b=;
if(vis[cur]){//如果已经完成过该作业就更新
if(dp[cur].score>dp[i].score+b){
dp[cur].score=dp[i].score+b;
dp[cur].pre=i;//还没完成该学科之前已经完成了的学科
dp[cur].now=j;//当前的学科
}
}
else{//如果没完成直接更新
vis[cur]=;
dp[cur].score=dp[i].score+b;
dp[cur].pre=i;
dp[cur].now=j;
}
}
}
}
cout<<dp[en].score<<endl;
stack <int> S;
//用栈输出完成作业的路径,也可以用递归
while(en>){
S.push(dp[en].now);
en=dp[en].pre;
}
while(!S.empty()){
cout<<course[S.top()].s<<endl;
S.pop();
}
}
return ;
}

2016-06-26

 

HDU 1074:Doing Homework(状压DP)的更多相关文章

  1. HDU 1074 Doing Homework 状压dp(第一道入门题)

    Doing Homework Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)To ...

  2. HDU 1074 Doing Homework (状压DP)

    Doing Homework Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)To ...

  3. HDU 1074 Doing Homework 状压DP

    由于数据量较小,直接二进制模拟全排列过程,进行DP,思路由kuangbin blog得到,膜拜斌神 #include<iostream> #include<cstdio> #i ...

  4. hdu 3247 AC自动+状压dp+bfs处理

    Resource Archiver Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 100000/100000 K (Java/Ot ...

  5. hdu 2825 aC自动机+状压dp

    Wireless Password Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others ...

  6. hdu_1074_Doing Homework(状压DP)

    题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=1074 题意:给你n个课程(n<=15)每个课程有限制的期限和完成该课程的时间,如果超出时间,每超 ...

  7. HDU 5765 Bonds(状压DP)

    [题目链接] http://acm.hdu.edu.cn/showproblem.php?pid=5765 [题目大意] 给出一张图,求每条边在所有边割集中出现的次数. [题解] 利用状压DP,计算不 ...

  8. HDU 1074 Doing Homework(像缩进DP)

    Problem Description Ignatius has just come back school from the 30th ACM/ICPC. Now he has a lot of h ...

  9. hdu 3681(bfs+二分+状压dp判断)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3681 思路:机器人从出发点出发要求走过所有的Y,因为点很少,所以就能想到经典的TSP问题.首先bfs预 ...

  10. hdu 4778 Gems Fight! 状压dp

    转自wdd :http://blog.csdn.net/u010535824/article/details/38540835 题目链接:hdu 4778 状压DP 用DP[i]表示从i状态选到结束得 ...

随机推荐

  1. jquery layer插件弹出弹层 结构紧凑,功能强大

    /* 去官方网站下载最新的js http://sentsin.com/jquery/layer/ ①引用jquery ②引用layer.min.js */ 事件触发炸弹层可以自由绑定,例如: $('# ...

  2. ASP .NET My97DatePicker

    My97DatePicker http://jingyan.baidu.com/article/e6c8503c7244bae54f1a18c7.html <input type="t ...

  3. 用MVVM模式开发中遇到的零散问题总结(4)——自制摄像头拍摄大头贴控件

    原文:用MVVM模式开发中遇到的零散问题总结(4)--自制摄像头拍摄大头贴控件 一直有个疑问,为什么silverlight对摄像头支持这么好,WPF却一个库都没有....于是我各种苦恼啊,各种Code ...

  4. 在WPF中,如何得到任何Object对象的XAML代码?

    原文:在WPF中,如何得到任何Object对象的XAML代码? 在WPF中,可以使用System.Windows.Markup.XamlWriter.Save(objName)得到任何Object对象 ...

  5. css3 hover平滑过渡效果,鼠标经过元素,背景渐隐渐现效果

    下面实例,演示,鼠标经过时,改变div宽度,平滑改变,带动画 div { width:100px; height:100px; background:blue; transition:width 2s ...

  6. WPF TreeView HierarchicalDataTemplate

    原文 WPF TreeView HierarchicalDataTemplate HierarchicalDataTemplate 的DataType是本层的绑定,而ItemsSource是绑定下层的 ...

  7. HTTP协议入门(一)- 版本

    当我们在浏览器的地址栏输入URL后,信息会被发送到WEB服务器,服务器得到响应,将数据传输回来,展示到WEB页面上,这其中的传输方法就是HTTP协议. 一.HTTP 0.9 发布于1991年,是首个H ...

  8. window 10 64bit Tortoise SVN 图标状态显示不正常

    https://www.cnblogs.com/lzpong/p/6187366.html 根据以上帖子处理 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows ...

  9. 使用MultiByteToWideChar转换UTF8为GBK(UTF8在Windows的代码页是CP_UTF8)

    两个使用的函数: 1,UTF8转化为Unicode,inline为了编译后更快运行,老用到了,返回字符串为了使用链式表达式 inline WCHAR  *UTF8ToUnicode(const cha ...

  10. hadoop(三)

    hadoop(三) 1.对MapReduce的认识   MapReduce是运行在yarn上面的一个分布式运算框架,它是用来解决海量的分布式运算的.对于MapReduce来说,我们可以把它分成两部分来 ...