Problem Description
http://acm.hdu.edu.cn/showproblem.php?pid=1871
1 2 1 2 100 2 3 120 4 3 1 1 5
2 1 1 sorry 题目分析; 直接扫描即可,找到可以的方案就进行分配,当下次再遇到更优的方案,还原上次方案的分配的数量,进行此次分配, 直到全部分配或者不能分配。当然此题也可以排序。 AC代码:/** *贪心,排序或者扫描 */ #include<iostream> #include<cstdio> #include<map> #include<cstring> #include<string> #include<algorithm> #include<queue> #include<vector> #include<stack> #include<cstdlib> #include<cctype> #include<cstring> #include<cmath> using namespace std; struct room{ int id;//编号 int room;//房间数 int value;//价值 }; room r[110]; int main() { int t,c; cin>>t; while(t--){ cin>>c; for(int i=0;i<c;i++){ cin>>r[i].id>>r[i].room>>r[i].value; } int n,x,ok,k; cin>>n; for(int i=0;i<n;i++){ cin>>x; ok=0; k=0; for(int j=0;j<c;j++){ if(ok==0&&r[j].room>=x){ k=j; ok=1;//第一次找到 r[k].room-=x;//房间数减少 } if(ok&&r[j].room>=x&&r[k].value>r[j].value){//找到最便宜 r[k].room+=x;//回溯上一个房间 k=j; r[k].room-=x;//减少下一个房间 } } if(ok){ cout<<r[k].id<<endl; } else{ cout<<"sorry"<<endl; } } } return 0; }
原文地址:http://blog.csdn.net/fool_ran/article/details/42428421