题目链接:Array and Segments (Hard version)

题意:给定一个长度为n的序列,m个区间,从m个区间内选择一些区间内的数都减一,使得整个序列的最大值减最小值最大。

题解:利用差分的思想,并且考虑到m比较小,遍历一遍序列,当前点遇到需要改变的时候进行操作,同时更新答案。

  1. #include <set>
  2. #include <map>
  3. #include <queue>
  4. #include <deque>
  5. #include <stack>
  6. #include <cmath>
  7. #include <cstdio>
  8. #include <vector>
  9. #include <string>
  10. #include <cstring>
  11. #include <fstream>
  12. #include <iostream>
  13. #include <algorithm>
  14. using namespace std;
  15.  
  16. #define eps 1e-8
  17. #define pb push_back
  18. #define PI acos(-1.0)
  19. #define INF 0x3f3f3f3f
  20. #define clr(a,b) memset(a,b,sizeof(a)
  21. #define bugc(_) cerr << (#_) << " = " << (_) << endl
  22. #define FAST_IO ios::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
  23.  
  24. const int N=1e5+;
  25. typedef long long ll;
  26. typedef unsigned long long ull;
  27. int a[N],l[N],r[N];
  28. vector <int> sub[N],add[N];
  29.  
  30. int main(){
  31. int mxt=-INF,mit=INF;
  32. int n,m,ans=-INF,ansid=,cnt=;
  33. scanf("%d%d",&n,&m);
  34. for(int i=;i<=n;i++){
  35. scanf("%d",&a[i]);
  36. mit=min(mit,a[i]);mxt=max(mxt,a[i]);
  37. }
  38. ans=mxt-mit;
  39. for(int i=;i<=m;i++){
  40. scanf("%d%d",&l[i],&r[i]);
  41. sub[l[i]].push_back(i);
  42. add[r[i]+].push_back(i);
  43. }
  44. for(int i=;i<=n;i++){
  45. for(int j=;j<sub[i].size();j++){
  46. int id=sub[i][j];
  47. for(int k=l[id];k<=r[id];k++) a[k]--;
  48. }
  49. for(int j=;j<add[i].size();j++){
  50. int id=add[i][j];
  51. for(int k=l[id];k<=r[id];k++) a[k]++;
  52. }
  53. if(sub[i].size()||add[i].size()){
  54. int mi=INF,mx=-INF;
  55. for(int j=;j<=n;j++) mi=min(mi,a[j]),mx=max(mx,a[j]);
  56. if(ans<mx-mi){
  57. ans=mx-mi;
  58. ansid=i;
  59. }
  60. }
  61. }
  62. printf("%d\n",ans);
  63. for(int i=;i<=m;i++){
  64. if(l[i]<=ansid&&r[i]>=ansid) cnt++;
  65. }
  66. printf("%d\n",cnt);
  67. for(int i=;i<=m;i++){
  68. if(l[i]<=ansid&&r[i]>=ansid) printf("%d ",i);
  69. }
  70. return ;
  71. }

Codeforces 1108E2 Array and Segments (Hard version)(差分+思维)的更多相关文章

  1. Codeforces 1108E2 Array and Segments (Hard version) 差分, 暴力

    Codeforces 1108E2 E2. Array and Segments (Hard version) Description: The only difference between eas ...

  2. codeforces#1108E2. Array and Segments (线段树+扫描线)

    题目链接: http://codeforces.com/contest/1108/problem/E2 题意: 给出$n$个数和$m$个操作 每个操作是下标为$l$到$r$的数减一 选出某些操作,使$ ...

  3. Codeforces Round #535 (Div. 3) E2. Array and Segments (Hard version) 【区间更新 线段树】

    传送门:http://codeforces.com/contest/1108/problem/E2 E2. Array and Segments (Hard version) time limit p ...

  4. Array and Segments (Easy version) CodeForces - 1108E1 (暴力枚举)

    The only difference between easy and hard versions is a number of elements in the array. You are giv ...

  5. 【Codeforces 1108E1】Array and Segments (Easy version)

    [链接] 我是链接,点我呀:) [题意] 题意 [题解] 枚举最大值和最小值在什么地方. 显然,只要包含最小值的区间,都让他减少. 因为就算那个区间包含最大值,也无所谓,因为不会让答案变小. 但是那些 ...

  6. E1. Array and Segments (Easy version)(暴力) && E2. Array and Segments (Hard version)(线段树维护)

    题目链接: E1:http://codeforces.com/contest/1108/problem/E1 E2:http://codeforces.com/contest/1108/problem ...

  7. CF E2 - Array and Segments (Hard version) (线段树)

    题意给定一个长度为n的序列,和m个区间.对一个区间的操作是:对整个区间的数-1可以选择任意个区间(可以为0个.每个区间最多被选择一次)进行操作后,要求最大化的序列极差(极差即最大值 - 最小值).ea ...

  8. Codeforces 1108E (Array and Segments) 线段树

    题意:给你一个长度为n的序列和m组区间操作,每组区间操作可以把区间[l, r]中的数字都-1,请选择一些操作(可以都不选),使得序列的最大值和最小值的差值尽量的大. 思路:容易发现如果最大值和最小值都 ...

  9. CF1108E2 Array and Segments (Hard version)

    线段树 对于$Easy$ $version$可以枚举极大值和极小值的位置,然后判断即可 但对于$Hard$ $version$明显暴力同时枚举极大值和极小值会超时 那么,考虑只枚举极小值 对于数轴上每 ...

随机推荐

  1. 解决Spring MVC前台传参中文乱码问题

    在web.xml文件中配置字符编码过滤器: <filter> <filter-name>CharacterEncoding</filter-name> <fi ...

  2. 初学pyhon的几个练习小程序

    一.概述 此程序示例为博主根据路飞学城的python的作业而写的(博主也是python初学者,仅花了99元报了路飞学城的python入门14天集中营3期网络课堂班),此程序非常适合python初学者拿 ...

  3. redis.conf常用配置说明

    最近学了 Redis,在 Linux 上安装的,接下来就简单讲解一下修改 Redis 配置文件 修改密码: 新安装的 Redis 是默认没有密码的,可以给Redis设置一个密码 先进入 Redis 的 ...

  4. cesium 之地图显示坐标、比例尺、海拔高度效果篇(附源码下载)

    前言 cesium 官网的api文档介绍地址cesium官网api,里面详细的介绍 cesium 各个类的介绍,还有就是在线例子:cesium 官网在线例子,这个也是学习 cesium 的好素材. 内 ...

  5. arcgis api 3.x for js 入门开发系列二十一气泡窗口信息动态配置模板

    前言 关于本篇功能实现用到的 api 涉及类看不懂的,请参照 esri 官网的 arcgis api 3.x for js:esri 官网 api,里面详细的介绍 arcgis api 3.x 各个类 ...

  6. Java初学习-常见单词

    implements    实行/实现      用于实现接口(interface) extends           延伸/扩展         用于类的继承 container        容 ...

  7. 关于如何使用xposed来hook微信软件

     安卓端  难点有两个  收款码的生成和到帐监听   需要源码加 2442982910

  8. 线上centos6出现软死锁 kernel:BUG: soft lockup

    线上centos6出现软死锁 kernel:BUG: soft lockup 今天线上一台centos6机器用xshell一直连接不上,然后在xshell上显示 Message from syslog ...

  9. Django-2- 模板路径查找,模板变量,模板过滤器,静态文件引用

    模板路径查找 路径配置 2. templates模板查找有两种方式 2.1 - 在APP目录下创建templates文件夹,在文件夹下创建模板 2.2 - 在项目根目录下创建templates文件夹, ...

  10. WebStrom中实现Vue项目的快速启动

    工具:WebStrom+vue 前提:你已经安装了node.js,vuejs,会创建vue项目等一系列的操作 发生场景:希望在WebStrom中能够快速启动vue的项目,省去npm install,  ...