poj3045 Cow Acrobats (思维,贪心)
2019-10-12 08:11:27来源:博客园 阅读 ()
poj3045 Cow Acrobats (思维,贪心)
题目:
poj3045 Cow Acrobats
解析:
贪心题,类似于国王游戏
考虑两个相邻的牛\(i\),\(j\)
设他们上面的牛的重量一共为\(sum\)
把\(i\)放在上面,危险值分别为\(x_1=sum-s_i\),$ x_2=sum+w_i-s_j$
把\(j\)放在上面,危险值分别为\(x_3=sum-s_j\), \(x_4=sum+w_j-s_i\)
若把j放在上面更优,则有\(max(x_3,x_4)<max(x_1,x_2)\)
有四种情况
\(x_3<x_1\)
\(x_3<x_2\)
\(x_4<x_1\)
\(x_4<x_2\)
显然的是\(x_3<x_2\),\(x_1>x_4\)
而\(s_i\)和\(s_j\)关系不确定
所以一定有\(w_i+s_i>w_j+w_j\)
按\(w+s\)排序从小到大排序,大的在下面
代码:
很简单
#include <iostream>
#include <algorithm>
#include <cstdio>
#define int long long
using namespace std;
const int N = 1e5 + 10;
const int INF = 0x3f3f3f3f;
int n;
struct node {
int w, s;
bool operator <(const node &oth) const {
return w + s < oth.w + oth.s;
}
} e[N];
template<class T>inline void read(T &x) {
x = 0; char ch = getchar();
while (isdigit(ch)) x = x * 10 + ch - '0', ch = getchar();
return;
}
signed main() {
read(n);
for (int i = 1; i <= n; ++i) read(e[i].w), read(e[i].s);
sort(e + 1, e + 1 + n);
int sum = 0, ans = -INF;
for (int i = 1; i <= n; ++i) ans = max(ans, sum - e[i].s), sum += e[i].w;
cout << ans << endl;
}
原文链接:https://www.cnblogs.com/lykkk/p/11650957.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- cow bowling 2020-02-13
- lost cows 2020-02-12
- Catch That Cow 2020-02-02
- LuoguP3069 【[USACO13JAN]牛的阵容Cow Lineup 2019-10-30
- P5200 [USACO19JAN]Sleepy Cow Sorting 2019-08-26
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash