HZOI20190823模拟31题解
题面:https://www.cnblogs.com/Juve/articles/11425141.html
math:仔细看看其实是个水题
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define int long long
#define re register
using namespace std;
const int MAXN=5e5+5;
const int MAXM=1e6+5;
int n,k,a[MAXN],g,sum;
int gcd(int a,int b){
return b==0?a:gcd(b,a%b);
}
signed main(){
scanf("%lld%lld",&n,&k);
for(re int i=1;i<=n;i++) scanf("%lld",&a[i]);
g=k;
for(int i=1;i<=n;i++) g=gcd(a[i],g);
sum=k/g;
printf("%lld\n",sum);
for(int i=0;i*g<k;i++){
printf("%lld ",i*g);
}
puts("");
return 0;
}
biology:dp,维护4个最大值
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define MAXN 2005
#define re register
#define int long long
using namespace std;
int n,m,a[MAXN][MAXN],b[MAXN][MAXN],ans=0,tot=0,st;
struct node{
int x,y,a,b;
friend bool operator < (node p,node q){
return p.a<q.a;
}
}t[MAXN*MAXN];
bool vis[MAXN*MAXN];
int px1,px2,px3,px4,mx1,mx2,mx3,mx4;
signed main(){
scanf("%lld%lld",&n,&m);
for(re int i=1;i<=n;i++)
for(re int j=1;j<=m;j++)
scanf("%lld",&a[i][j]);
for(re int i=1;i<=n;i++)
for(re int j=1;j<=m;j++){
scanf("%lld",&b[i][j]);
if(a[i][j]==0) continue;
t[++tot]=(node){i,j,a[i][j],b[i][j]};
}
sort(t+1,t+tot+1);
t[0]=t[1];
for(int i=1;i<=tot;i++) if(t[i].a!=t[i-1].a) vis[i]=1;
for(int i=1;i<=tot;i++){
int x=t[i].x,y=t[i].y,res=t[i].b;
if(vis[i]){
st=i;
break;
}
px1=max(px1,res-x-y);
px2=max(px2,res-x+y);
px3=max(px3,res+x-y);
px4=max(px4,res+x+y);
}
for(int i=st;i<=tot;i++){
int x=t[i].x,y=t[i].y,res=0;
if(vis[i]){
mx1=max(mx1,px1);
mx2=max(mx2,px2);
mx3=max(mx3,px3);
mx4=max(mx4,px4);
px1=px2=px3=px4=0;
}
res=max(max(mx1+x+y,mx2+x-y),max(mx3-x+y,mx4-x-y))+t[i].b;
px1=max(px1,res-x-y);
px2=max(px2,res-x+y);
px3=max(px3,res+x-y);
px4=max(px4,res+x+y);
ans=max(ans,res);
}
printf("%lld\n",ans);
return 0;
}
/*
3 3
0 6 8
1 6 1
0 6 8
0 1 2
3 4 5
0 6 7
*/
english:
ans1用单调栈处理出每一个ai,它作为最大值的区间,然后维护前缀和,sum[i][j]表示前j个数第i位上有几个1
ans2用可持久化01trie做
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#define int long long
using namespace std;
const int MAXN=1e5+5;
const int mod=1e9+7;
int n,a[MAXN],opt,sum[22][MAXN],ans1=0,ans2=0;
int sta[MAXN],top=0,l[MAXN],r[MAXN],tot=0;
int tr[MAXN*22][2],size[MAXN*22],root[MAXN];
void insert(int &now,int pre,int val,int i){
now=++tot;
size[now]=size[pre]+1;
if(i<0) return ;
int p=(val>>i)&1;
tr[now][p^1]=tr[pre][p^1];
insert(tr[now][p],tr[pre][p],val,i-1);
size[now]=size[tr[now][0]]+size[tr[now][1]];
}
int query(int rt,int x,int y){
int res=0;
for(int i=20;i>=0;i--){
int p=(x>>i)&1,q=(y>>i)&1;
if(!q){
(res+=size[tr[rt][p^1]])%=mod;
rt=tr[rt][p];
}
else rt=tr[rt][p^1];
if(!rt) break;
}
return res;
}
signed main(){
scanf("%lld%lld",&n,&opt);
for(int i=1;i<=n;i++){
scanf("%lld",&a[i]);
insert(root[i],root[i-1],a[i],20);
int tmp=a[i];
for(int j=0;j<=20;j++){
sum[j][i]=sum[j][i-1];
if((a[i]>>j)&1) sum[j][i]++;
}
}
for(int i=0;i<=20;i++) sum[i][n+1]=sum[i][n],sum[i][0]=0;
for(int i=1;i<=n;i++){
while(top!=0&&a[sta[top]]<a[i]) top--;
if(top==0) l[i]=1;
else l[i]=sta[top]+1;
sta[++top]=i;
}
top=0;
for(int i=n;i>=1;i--){
while(top!=0&&a[sta[top]]<=a[i]) top--;
if(top==0) r[i]=n+1;
else r[i]=sta[top];
sta[++top]=i;
}
for(int i=1,res;i<=n;i++){
res=0;
if(l[i]==r[i]) continue;
for(int j=0;j<=20;j++){
(res+=(((sum[j][i]-sum[j][l[i]-1])*((r[i]-i)-(sum[j][r[i]-1]-sum[j][i-1])))<<j))%=mod;
(res+=(((sum[j][r[i]-1]-sum[j][i-1])*((i-l[i]+1)-(sum[j][i]-sum[j][l[i]-1])))<<j))%=mod;
}
(ans1+=res*a[i]%mod)%=mod;
res=0;
if(i-l[i]<r[i]-i-1){
for(int j=l[i];j<=i;j++)
(res+=(query(root[r[i]-1],a[j],a[i])-query(root[i-1],a[j],a[i])+mod)%mod)%=mod;
}else{
for(int j=i;j<r[i];j++)
(res+=(query(root[i],a[j],a[i])-query(root[l[i]-1],a[j],a[i])+mod)%mod)%=mod;
}
(ans2+=(res*a[i]%mod))%=mod;
}
if(opt==1) printf("%lld\n",ans1%mod);
else if(opt==2) printf("%lld\n",ans2%mod);
else printf("%lld\n%lld\n",ans1%mod,ans2%mod);
return 0;
}
HZOI20190823模拟31题解的更多相关文章
- noip模拟31[time·game·cover]
noip模拟31 solutions 我就觉得这些考试题是越考越难,我是也越考越完蛋,已经完完全全的接近爆零了 只有20pts,说真的这还是我第一次挂掉30pts,本来我还有50pts嘞 所以这次考试 ...
- [CQOI2012]模拟工厂 题解(搜索+贪心)
[CQOI2012]模拟工厂 题解(搜索+贪心) 标签:题解 阅读体验:https://zybuluo.com/Junlier/note/1327574 链接题目地址:洛谷P3161 BZOJ P26 ...
- 「题解」NOIP模拟测试题解乱写I(29-31)
NOIP模拟29(B) T1爬山 简单题,赛时找到了$O(1)$查询的规律于是切了. 从倍增LCA那里借鉴了一点东西:先将a.b抬到同一高度,然后再一起往上爬.所用的步数$×2$就是了. 抬升到同一高 ...
- [NOIP模拟测试31]题解
A.math 考场乱搞拿了95,2333. 考虑裴蜀定理:$ax+by=z$存在整数解,当且仅当$gcd(a,b)|z$. 那么如果某个数能够被拼出来,就必须满足所有$a_i$的$gcd$是它的因子. ...
- NOIP第7场模拟赛题解
NOIP模拟赛第7场题解: 题解见:http://www.cqoi.net:2012/JudgeOnline/problemset.php?page=13 题号为2221-2224. 1.car 边界 ...
- 大家AK杯 灰天飞雁NOIP模拟赛题解/数据/标程
数据 http://files.cnblogs.com/htfy/data.zip 简要题解 桌球碰撞 纯模拟,注意一开始就在袋口和v=0的情况.v和坐标可以是小数.为保险起见最好用extended/ ...
- HGOI NOIP模拟4 题解
NOIP国庆模拟赛Day5 题解 T1 马里奥 题目描述 马里奥将要参加 NOIP 了,他现在在一片大陆上,这个大陆上有着许多浮空岛,并且其中一座浮空岛上有一个传送门,马里奥想要到达传送门从而前往 N ...
- 10.8 wtx模拟题题解
填坑 orz w_x_c_q w_x_c_q的模拟赛(150pts,炸了) money 题目背景: 王小呆又陷入自己的梦里.(活在梦里...) 题目描述: 王小呆是一个有梦想的小菜鸡,那就是赚好多好多 ...
- [NOIP模拟13]题解
A.矩阵游戏 其实挺水的? 考场上根本没有管出题人的疯狂暗示(诶这出题人有毛病吧这么简单的东西写一大堆柿子),而且推公式能力近乎没有,所以死掉了. 很显然乘法有交换率结合率所以操作顺序对最终结果没什么 ...
随机推荐
- json的dump和dumps的区别
dumps是将dict转化成str格式,loads是将str转化成dict格式. dump和load也是类似的功能,只是与文件操作结合起来了. In [1]: import json In [2]: ...
- jquery对于ajax的封装
第一层封装 $.ajax({ 属性名:值,属性名:值}) /* url: 请求服务器地址 data:请求参数 dataType:服务器返回数据类型 error 请求出错执行的功能 success 请求 ...
- springcloud系列14 bus的使用
首先springcloud_bus原理: (1)完整流程:发送端(endpoint)构造事件event,将其publish到context上下文中(spring cloud bus有一个父上下文,bo ...
- COGITATE | 分析当前热门软件的创新
热门软件分析实例一——Github [简介] gitHub是一个面向开源及私有软件项目的托管平台,因为只支持git 作为唯一的版本库格式进行托管,故名gitHub.作为一个分布式的版本控制系统,在Gi ...
- 嘴巴题9 Codeforces 453A. Little Pony and Expected Maximum
A. Little Pony and Expected Maximum time limit per test 1 second memory limit per test 256 megabytes ...
- 函数的作用域、作用域链以及return关键字
1.作用域 全局作用域:在函数外部使用var关键字定义的变量 局部作用域:在函数内部使用var关键字定义的变量 特点 (1)局部变量无法直接影响全局变量 (2)在局部作用域中可以使用全局作用 ...
- LeetCode第一题—— Two Sum(寻找两数,要求和为target)
题目描述: Given an array of integers, return indices of the two numbers such that they add up to a speci ...
- 性能分析神器VisualVM【转】
性能分析神器VisualVM[转] Posted on 2015-04-17 09:37 WadeXu 阅读(5809) 评论(6) 编辑 收藏 VisualVM 是一款免费的,集成了多个 JDK 命 ...
- 便携版Mysql安装
目录 1.安装 0.Mysql下载地址 1.解压 2.在主目录下新建data和tempData两个文件夹 3.配置环境变量 4.配置my.ini 5.安装服务(管理员模式CMD) 6.清空data文件 ...
- leetcode-第5周双周赛-1136平行课程
方法一: class Solution(object): def minimumSemesters(self, N, relations): """ :type N: i ...