博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[USACO12MAR] 摩天大楼里的奶牛 Cows in a Skyscraper
阅读量:5333 次
发布时间:2019-06-15

本文共 2295 字,大约阅读时间需要 7 分钟。

题目描述

A little known fact about Bessie and friends is that they love stair climbing races. A better known fact is that cows really don't like going down stairs. So after the cows finish racing to the top of their favorite skyscraper, they had a problem. Refusing to climb back down using the stairs, the cows are forced to use the elevator in order to get back to the ground floor.

The elevator has a maximum weight capacity of W (1 <= W <= 100,000,000) pounds and cow i weighs C_i (1 <= C_i <= W) pounds. Please help Bessie figure out how to get all the N (1 <= N <= 18) of the cows to the ground floor using the least number of elevator rides. The sum of the weights of the cows on each elevator ride must be no larger than W.

给出n个物品,体积为w[i],现把其分成若干组,要求每组总体积<=W,问最小分组。(n<=18)

题目解析

模拟退火

话说啊,贪心是错的,虽然一眼看上去是没有问题的。 
贪心:75分 
裸贪心显然是错的,证明略。
 
但是我们发现了一个有趣的事情,把奶牛的重量从大到小排个序贪心,在一般强度的数据下是正确的,有点像给罐子里先放石头再放沙子再放水比先放水再放沙子石头要更好一样。外加这题数据很小,n^2的贪心是可以执行1e5级别次的。 
综上,退火。 
但答案如果经过特殊构造,将使得退火效率降低,难以得到正确解,这时可以采取一个小技巧:
对题目询问的区间进行小幅晃动
对这道题而言就是略微调整w的范围。 
 
鉴于贪心的错误性,我把e设成了0.9。
在错误性较大的算法下,降温稍快可以让得到正解的可能增大 
不多说了,上代码。
 
用小号调了半天参WA来WA去WAWA大哭

Code

#include
#include
#include
#include
#include
using namespace std;const int MAXN = 25;int n,w,ans,tim;int a[MAXN],s[MAXN];double T,e;bool cmp(int x,int y) { return x > y;}inline bool getposs() { T *= e; if(rand() % 10000 < T) return false; else return true;}inline void clean() { T = 9000, e = 0.9; memset(s,0,sizeof(s)); tim = 0; return;}int main() { srand(time(NULL)); scanf("%d%d",&n,&w); w *= 1.005; for(int i = 1;i <= n;i++) { scanf("%d",&a[i]); } sort(a+1,a+1+n,cmp); bool flag = false; int cnt = 200000; ans = 0x3f3f3f3f; while(cnt--) { clean(); for(int i = 1;i <= n;i++) { flag = false; for(int j = 1;j <= tim;j++) { if(w - s[j] >= a[i] && getposs()) { s[j] += a[i]; flag = true; break; } } if(!flag) s[++tim] += a[i]; } ans = min(ans,tim); } printf("%d\n",ans); return 0;}

 

转载于:https://www.cnblogs.com/floatiy/p/9750703.html

你可能感兴趣的文章
【BZOJ-2295】我爱你啊 暴力
查看>>
【BZOJ-1055】玩具取名 区间DP
查看>>
Oracle安装配置—64位Win7安装配置64位Oracle
查看>>
Bit Twiddling Hacks
查看>>
个人总结
查看>>
const与指针
查看>>
java面试题全集(中)
查看>>
[USACO08MAR]土地征用Land Acquisition
查看>>
Windwos中的线程同步
查看>>
删除重复记录
查看>>
LeetCode : Reverse Vowels of a String
查看>>
centos 双网卡双IP设置
查看>>
时间戳与日期的相互转换
查看>>
获取手机当前经纬度的方法
查看>>
oracle 导出与导入
查看>>
规避字符串在传递过程中造成的编码问题
查看>>
HTTP协议
查看>>
jmeter(五)创建web测试计划
查看>>
使用git pull文件时和本地文件冲突怎么办?
查看>>
spring aop advice注解实现的几种方式
查看>>