P2352 队爷的新书(差分)

2019-10-28 16:01:42来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

P2352 队爷的新书(差分)

题目

P2352 队爷的新书

解析

题目意思是

给你n个区间,选择一个数x,使\(x\times覆盖x的区间的个数\)最大

和这个题差不多
差分,离散化一下,在区间的\(l\)\(+1\)\(r+1\)\(?1\),不同的是,我们要求的是最大乘积,显然相同的覆盖数下,\(i\)越大,答案就越大,所以我们在\(r\)\(+0\),表示这个位置不参与操作,只是用来贡献答案,然后排序扫一遍就可以了

代码

#include <bits/stdc++.h>
#define int long long
using namespace std;
const int N = 1e6 + 10;

int n, ans, mx, sum;

struct node {
    int a, b;
    bool operator <(const node &oth) const {
        return a < oth.a;
    }
} e[N];

signed main() {
    cin >> n;
    for (int i = 1, x, y; i <= n; ++i) {
        cin >> x >> y;
        e[++mx] = (node) {x, 1};
        e[++mx] = (node) {y, 0};
        e[++mx] = (node) {y + 1, -1};
    }
    sort(e + 1, e + 1 + mx);
    for (int i = 1; i <= mx; ++i) {
        sum += e[i].b;
        ans = max(ans, sum * e[i].a);
    }
    cout << ans;
}

原文链接:https://www.cnblogs.com/lykkk/p/11754625.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:记录一次gdb debug经历

下一篇:Unary模式下客户端创建 default-executor 和 resolver-executor