博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2018 Multi-University Training Contest 8 - From ICPC to ACM
阅读量:4952 次
发布时间:2019-06-11

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

贪心 + 模拟

预处理出最便宜的原材料价格,然后用map储存每种价格的电脑数量。

这里因为每个月价格都在变化,所以可以用相对价格,也就是减去一个sigema(e[i])。

每次选择最小的卖,统计贡献,最后如果超出库存,反着删除即可(相当于没有生产这些电脑)

#include 
#define INF 0x3f3f3f3f#define full(a, b) memset(a, b, sizeof a)#define FAST_IO ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)using namespace std;typedef long long ll;inline int lowbit(int x){ return x & (-x); }inline ll read(){ ll ret = 0, w = 0; char ch = 0; while(!isdigit(ch)) { w |= ch == '-'; ch = getchar(); } while(isdigit(ch)) ret = (ret << 3) + (ret << 1) + (ch ^ 48), ch = getchar(); return w ? -ret : ret;}inline int gcd(int a, int b){ return b ? gcd(b, a % b) : a; }inline int lcm(int a, int b){ return a / gcd(a, b) * b; }template
inline T max(T x, T y, T z){ return max(max(x, y), z); }template
inline T min(T x, T y, T z){ return min(min(x, y), z); }template
inline A fpow(A x, B p, C lyd){ A ans = 1; for(; p; p >>= 1, x = 1LL * x * x % lyd)if(p & 1)ans = 1LL * x * ans % lyd; return ans;}const int N = 50005;ll _, k, c[N], d[N], m[N], p[N], e[N], R[N], E[N];map
record;int main(){ for(_ = read(); _; _ --){ k = read(), record.clear(); for(int i = 1; i <= k; i ++){ c[i] = read(), d[i] = read(), m[i] = read(), p[i] = read(); } for(int i = 1; i < k; i ++){ e[i] = read(), R[i] = read(), E[i] = read(); } for(int i = 1; i < k; i ++){ if(c[i] + R[i] < c[i + 1]) c[i + 1] = c[i] + R[i]; } ll ans = 0; int sum = 0, tot = 0; for(int i = 1; i <= k; i ++){ record[c[i] + m[i] - sum] += p[i], tot += p[i]; while(!record.empty() && d[i]){ if(record.begin()->second > d[i]){ tot -= d[i]; record.begin()->second -= d[i]; ans += (record.begin()->first + sum) * d[i]; d[i] = 0; } else{ tot -= record.begin()->second; d[i] -= record.begin()->second; ans += (record.begin()->first + sum) * record.begin()->second; record.erase(record.begin()->first); } } if(d[i]){ ans = -1; break; } if(tot > e[i]){ while(!record.empty() && tot > e[i]){ if(tot - record.rbegin()->second >= e[i]){ tot -= record.rbegin()->second; record.erase(record.rbegin()->first); } else{ record.rbegin()->second -= (tot - e[i]); tot = e[i]; } } } sum += E[i]; } printf("%lld\n", ans); } return 0;}

转载于:https://www.cnblogs.com/onionQAQ/p/11164373.html

你可能感兴趣的文章
关于poi导出excel三种方式HSSFWorkbook,SXSSFWorkbook,csv的总结
查看>>
zoj 1649 Rescue (BFS)(转载)
查看>>
371. Sum of Two Integers java solutions
查看>>
2124: 等差子序列 - BZOJ
查看>>
3529: [Sdoi2014]数表 - BZOJ
查看>>
字符串匹配算法综述
查看>>
Linux centosVMware shell 管道符和作业控制、shell变量、环境变量配置文件
查看>>
在程序被送入后台时,向 iOS 借点时间,来完成一个长期任务
查看>>
【设计模式】工厂模式
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
前端之路
查看>>
javascript 继承
查看>>
String类型转int类型方法
查看>>
关于渲染引擎设计,Scene Management的文章
查看>>
oracle 使用leading, use_nl, rownum调优
查看>>
客户数据库出现大量cache buffer chains latch
查看>>
Linux文件权限
查看>>
機械の総合病院 [MISSION LEVEL: C]
查看>>
Delphi通用的序列化代码
查看>>
Educational Codeforces Round 6 D. Professor GukiZ and Two Arrays 二分
查看>>