P3028 汽水机(差分)
2019-10-28 16:01:03来源:博客园 阅读 ()
P3028 汽水机(差分)
题目
P3028 [USACO10OCT]汽水机Soda Machine
解析
差分,看到\(a[i]\leq 1e9\),离散化一下,在\(l\)处\(+1\),\(r+1\)处\(-1\),这样就只有\(2n\)个点了,再按位置排一下序,扫一遍记录答案就可以了。
需要注意的是,如果在某个位置既有\(+1\)操作又有\(-1\)操作,要先\(-1\)再\(+1\),否则在统计答案的时候会多算
强化版
代码
#include <bits/stdc++.h>
using namespace std;
const int N = 1e6 + 10;
int sum, ans, n;
struct node {
int pos, val;
bool operator<(const node & oth) const {
return pos == oth.pos ? val < oth.val : pos < oth.pos;
}
} e[N];
int main() {
ios::sync_with_stdio(false);
cin >> n;
for (int i = 1, x, y; i <= n; ++i) {
cin >> x >> y;
e[i] = (node) {x, 1}, e[i + n] = (node) {y + 1, -1};
}
sort(e + 1, e + 1 + n + n);
for (int i = 1; i <= n + n; ++i) {
sum += e[i].val;
ans = max(ans, sum);
}
cout << ans;
}
原文链接:https://www.cnblogs.com/lykkk/p/11754565.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- P2352 队爷的新书(差分) 2019-10-28
- 差分约束系统个人理解 2018-06-18
- 浅谈差分约束系统——图论不等式的变形 2018-06-17
- P3368 【模板】树状数组 2(树状数组维护差分序列) 2018-06-17
- POJ1201 Intervals(差分约束) 2018-06-17
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