Landscape Improved Gym - 100851L

2024-02-22 18:08
文章标签 gym landscape improved 100851l

本文主要是介绍Landscape Improved Gym - 100851L,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

http://codeforces.com/gym/100851/attachments

又是这种“金字塔型”的题目 就是题目要求构造形如1 2 3 4 5 4 3 2 1这样的序列 或者一些相关的操作

这样的题不好直接维护 对每个位置的数pos[i]都减去其下标i和(n-i+1) 构成两个新序列 这样就等于把这份序列转了45度 很容易就可以用线段树搞一搞

这个题也是 对每个位置i 二分一个峰值 然后判断是否符合条件 对于当前二分的这个值 找出左边的一个大于等于他的数 位置记为pl 同理右边的记为pr [pl+1,i-1]和[i+1,pr-1]这两个区间内有多少位置小于二分值 都要补齐 然后算一下花费来判断即可

 

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn=1e5+10;struct node
{ll lsum,lmaxx;ll rsum,rmaxx;
};node tree[4*maxn];
ll s;
ll ary[maxn],lef[maxn],rgt[maxn];
int n;void pushup(int cur)
{tree[cur].lsum=tree[2*cur].lsum+tree[2*cur+1].lsum;tree[cur].lmaxx=max(tree[2*cur].lmaxx,tree[2*cur+1].lmaxx);tree[cur].rsum=tree[2*cur].rsum+tree[2*cur+1].rsum;tree[cur].rmaxx=max(tree[2*cur].rmaxx,tree[2*cur+1].rmaxx);
}void build(int l,int r,int cur)
{int m;if(l==r){tree[cur].lsum=tree[cur].lmaxx=lef[l];tree[cur].rsum=tree[cur].rmaxx=rgt[l];return;}m=(l+r)/2;build(l,m,2*cur);build(m+1,r,2*cur+1);pushup(cur);
}void queryI(int tp,int &res,int pl,int pr,ll val,int l,int r,int cur)
{ll tmp;int m;if(pl<=l&&r<=pr){if(!tp) tmp=tree[cur].lmaxx;else tmp=tree[cur].rmaxx;if(tmp>=val){if(l==r) res=l;else{m=(l+r)/2;if(!tp){if(pr>m) queryI(tp,res,pl,pr,val,m+1,r,2*cur+1);if(res!=-1) return;if(pl<=m) queryI(tp,res,pl,pr,val,l,m,2*cur);}else{if(pl<=m) queryI(tp,res,pl,pr,val,l,m,2*cur);if(res!=-1) return;if(pr>m) queryI(tp,res,pl,pr,val,m+1,r,2*cur+1);}}}return;}m=(l+r)/2;if(!tp){if(pr>m) queryI(tp,res,pl,pr,val,m+1,r,2*cur+1);if(res!=-1) return;if(pl<=m) queryI(tp,res,pl,pr,val,l,m,2*cur);}else{if(pl<=m) queryI(tp,res,pl,pr,val,l,m,2*cur);if(res!=-1) return;if(pr>m) queryI(tp,res,pl,pr,val,m+1,r,2*cur+1);}
}ll queryII(int tp,int pl,int pr,int l,int r,int cur)
{ll res;int m;if(pl<=l&&r<=pr){if(!tp) return tree[cur].lsum;else return tree[cur].rsum;}res=0,m=(l+r)/2;if(pl<=m) res+=queryII(tp,pl,pr,l,m,2*cur);if(pr>m) res+=queryII(tp,pl,pr,m+1,r,2*cur+1);return res;
}bool judge(int pos,ll add)
{ll lefsum,rgtsum,len;int pl,pr;pl=-1,pr=-1;if(1<=pos-1) queryI(0,pl,1,pos-1,lef[pos]+add,1,n,1);if(pos+1<=n) queryI(1,pr,pos+1,n,rgt[pos]+add,1,n,1);//printf("*%d %d*\n",pl,pr);if(pl==-1||pr==-1) return 0;if(pl+1<=pos-1){len=(pos-1)-(pl+1)+1;lefsum=(lef[pos]+add)*len-queryII(0,pl+1,pos-1,1,n,1);}else lefsum=0;if(pos+1<=pr-1){len=(pr-1)-(pos+1)+1;rgtsum=(rgt[pos]+add)*len-queryII(1,pos+1,pr-1,1,n,1);}else rgtsum=0;if(lefsum+rgtsum+add<=s) return 1;else return 0;
}int main()
{ll l,r,m,ans,val;int i;freopen("landscape.in","r",stdin);freopen("landscape.out","w",stdout);scanf("%d%lld",&n,&s);for(i=1;i<=n;i++){scanf("%lld",&ary[i]);lef[i]=ary[i]-i+1;rgt[i]=ary[i]-(n-i+1)+1;}build(1,n,1);ans=0;for(i=1;i<=n;i++){//printf("***%d***\n",i);l=0,r=2e9,val=0;while(l<=r){m=(l+r)/2;if(judge(i,m)) val=m,l=m+1;else r=m-1;}ans=max(ans,ary[i]+val);}printf("%lld\n",ans);return 0;
}

 

这篇关于Landscape Improved Gym - 100851L的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/736076

相关文章

Creating OpenAI Gym Environment from Map Data

题意:从地图数据创建 OpenAI Gym 环境 问题背景: I am just starting out with reinforcement learning and trying to create a custom environment with OpenAI gym. However, I am stumped with trying to create an enviro

【codeforces】gym 101137 K - Knights of the Old Republic【用最小生成树对图做集合dp】

题目链接:【codeforces】gym 101137 K - Knights of the Old Republic 考虑对图集合dp,一个连通块的dp值为两个连通块的值的和或者强制加一条新边后的最小值,取个最小值(边从小到大枚举,则强制加一条最大的边会导致连通块内较小的边一定都选,则会构成一个生成树)。用kruskal实现这个dp过程即可。 #include <bits/stdc++.h>

【codeforces】gym 101138 K. The World of Trains【前缀和优化dp】

题目链接:K. The World of Trains 记录一个横着的前缀dp和以及斜着的前缀dp,复杂度 O(n2) O(n^2) #include <bits/stdc++.h>using namespace std ;typedef pair < int , int > pii ;typedef long long LL ;#define clr( a , x ) memset (

How to user “Discrete“ object in openai-gym environments?

题意:怎样在 OpenAI Gym 环境中使用 “Discrete” 对象 问题背景: I am trying to create a Q-Learning agent for a openai-gym "Blackjack-v0" environment. I am trying to get the size of the observation space but its in

OpenAI Gym custom environment: Discrete observation space with real values

题意:OpenAI Gym 自定义环境:具有实数值的离散观测空间 问题背景: I would like to create custom openai gym environment that has discrete state space, but with float values. To be more precise, it should be a range of valu

DAC: High-Fidelity Audio Compression with Improved RVQGAN

Rithesh KumarDescript, Inc.2023NIPS code 文章目录 abstratmethod abstrat 44.1k音频编码为8k bps,接近90x压缩比;可以处理speech, musiccodebook collapse: 部分码本没有利用到。----quantizer dropout :允许单个模型支持可变比特率,但实际上会损害全带宽音频的

GYM 100685 K

乱搞题 统计每一个不是magic word的单词,然后每个make_pair 然后按照公式计算答案。 因为这里是乱序的统计make_pair的情况,所以如果相邻的是相同的就会多统计一倍,在计算答案的是就要去掉,如果你保证字典序小的在前面,那就无所谓啦。 // whn6325689// Mr.Phoebe// http://blog.csdn.net/u01

GYM 100685 G【并查集】

一开始看题就水了一发bitset,本地是没有什么问题,但是交上去果断地MLE了。 那么就想到乱搞,假设将其变成一颗有根树,如果dfs的时候走的是正的边,就在正的并查集里面merge,如果走的是负的边,就在反的并查集里面merge。 对于一个查询,查询一下他们的LCA,如果他们的LCA,在u(或者v)正的并查集中,在另一个反的并查集内,那么就是可以访问,否则不行。 大家可以脑补一下图像,必然是

GYM 100685 J【交互题】

俄罗斯的人经常出一些交互题,比如强制离线之类的题目 这题是二分+交互 对于每一盏灯 i i,我们假设前面的灯位置都排好了位置,那么就二分那些这一盏灯所在的位置,询问的次数是nlog(n)nlog(n)次。 另外如果死循环的话,那就是没有方案,设置一个cnt上限来判断死循环。

How can OpenAI Gym‘s visualizations work within Docker?

题意:OpenAI Gym 的可视化功能如何在 Docker 中运行? 问题背景: I'd like to get OpenAI Gym working with the rendered OpenGL visualizations within a docker container. 我想在 Docker 容器中让 OpenAI Gym 与渲染的 OpenGL 可视化一起工作