牛客 仓鼠与珂朵莉(在线区间带权众数)

简介: 牛客 仓鼠与珂朵莉(在线区间带权众数)

原题链接

题意:

长度为n的序列,m次询问,求区间带权众数,强制在线。

思路:

与不带权的差别不大,多乘一个价值就好了。强制在线后每次计算完l , r要判断一下两者的大小。

代码:

// Problem: 仓鼠与珂朵莉
// Contest: NowCoder
// URL: https://ac.nowcoder.com/acm/problem/213938
// Memory Limit: 1024000 MB
// Time Limit: 6000 ms
// Author:Cutele
// 
// Powered by CP Editor (https://cpeditor.org)
#pragma GCC optimize(2)
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll>PLL;
typedef pair<int, int>PII;
typedef pair<double, double>PDD;
#define I_int ll
inline ll read(){ll x = 0, f = 1;char ch = getchar();while(ch < '0' || ch > '9'){if(ch == '-')f = -1;ch = getchar();}while(ch >= '0' && ch <= '9'){x = x * 10 + ch - '0';ch = getchar();}return x * f;}
inline void write(ll x){if (x < 0) x = ~x + 1, putchar('-');if (x > 9) write(x / 10);putchar(x % 10 + '0');}
#define read read()
#define closeSync ios::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define multiCase int T;cin>>T;for(int t=1;t<=T;t++)
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define repp(i,a,b) for(int i=(a);i<(b);i++)
#define per(i,a,b) for(int i=(a);i>=(b);i--)
#define perr(i,a,b) for(int i=(a);i>(b);i--)
ll ksm(ll a, ll b,ll mod){ll res = 1;while(b){if(b&1)res=res*a%mod;a=a*a%mod;b>>=1;}return res;}
const int maxn=100000+7,maxm=2e5+7,inf=0x3f3f3f3f;
int a[maxn],belong[maxn],id[maxn];//a原数组,belong是属于哪个块,id表示离散化后对应的数值
int block,n,q,num,m;///块的大小,数组大小,询问次数,块的数量,去重后的数字个数
int mp[maxn];///标记数组
ll dp[1100][1100];//标记第i->j块之间价值的最大值
int L[1100],R[1100];//分块后每块的左端点跟右端点。
vector<int>g[maxn];
ll Find(int x,int l,int r){
    return upper_bound(g[x].begin(), g[x].end(), r) - lower_bound(g[x].begin(), g[x].end(), l);
}
ll query(ll l,ll r){
    ll res=0;
    ll bl=belong[l],br=belong[r];
    if(bl==br){
        rep(i,l,r){
            ll tmp=Find(id[i],l,r);
            res=max(res,tmp*a[i]);
        }
    }
    else{
        res=dp[bl+1][br-1];
        rep(i,l,R[bl]){
            ll tmp=Find(id[i],l,r);
            res=max(res,tmp*a[i]);
        }
        rep(i,L[br],r){
            ll tmp=Find(id[i],l,r);
            res=max(res,tmp*a[i]);
        }
    }
    return res;
}
int main(){
    n=read,q=read;
    block=sqrt(n);
    num=n/block+(n%block>0);
    vector<int>v;//离散化用
    rep(i,1,n) a[i]=read,v.push_back(a[i]);
  //离散化过程
    sort(v.begin(),v.end());
  v.erase((unique(v.begin(),v.end())),v.end());
    m=v.size();
    rep(i,1,n){
        belong[i]=(i-1)/block+1;//记录每个数所在的块的编号
        id[i]=lower_bound(v.begin(),v.end(), a[i])-v.begin();///记录离散化后的数值。
        g[id[i]].push_back(i);
    }
    //预处理
    for(int i=1;i<=num;i++){
        L[i]=(i-1)*block+1,R[i]=i*block;
        memset(mp,0,sizeof mp);
        ll tmp=0;
        for(int j=(i-1)*block+1;j<=n;j++){
            mp[id[j]]++;
            tmp=max(tmp,mp[id[j]]*a[j]*1ll);
            dp[i][belong[j]]=tmp;
        }
    }
    ll las=0;
    rep(i,1,q){
        ll l=read,r=read;
        l=(l^las)%n+1ll,r=(r^las)%n+1ll;
        if(l>r) swap(l,r);
        las=query(l,r);
        printf("%lld\n",las);
    }
  return 0;
}
目录
相关文章
|
1月前
|
算法
Leecode第十六题(最接近的三数之和)
这篇文章介绍了LeetCode第16题“最接近的三数之和”的题目要求、解题思路和代码实现,该算法题目要求从给定的整数数组中找出三个数,使它们的和最接近给定的目标值。
44 0
|
5月前
|
算法
【经典LeetCode算法题目专栏分类】【第10期】排序问题、股票问题与TOP K问题:翻转对、买卖股票最佳时机、数组中第K个最大/最小元素
【经典LeetCode算法题目专栏分类】【第10期】排序问题、股票问题与TOP K问题:翻转对、买卖股票最佳时机、数组中第K个最大/最小元素
|
6月前
蓝桥备战--分糖果OJ2928 贪心 分类讨论
蓝桥备战--分糖果OJ2928 贪心 分类讨论
65 0
|
算法 Java
代码随想录算法训练营第三十四天 | LeetCode 860. 柠檬水找零、406. 根据身高重建队列、452. 用最少数量的箭引爆气球
代码随想录算法训练营第三十四天 | LeetCode 860. 柠檬水找零、406. 根据身高重建队列、452. 用最少数量的箭引爆气球
64 0
|
算法
代码随想录算法训练营第三十一天 | LeetCode 455. 分发饼干、376. 摆动序列、53. 最大子数组和
代码随想录算法训练营第三十一天 | LeetCode 455. 分发饼干、376. 摆动序列、53. 最大子数组和
61 0
|
算法
【算法挨揍日记】day03——双指针算法_有效三角形的个数、和为s的两个数字
【算法挨揍日记】day03——双指针算法_有效三角形的个数、和为s的两个数字
52 0
|
存储
蓝桥杯19国赛-矩阵计数
蓝桥杯19国赛-矩阵计数
84 0
|
机器人 Java Python
leetcode每日一题.200:岛屿数量
leetcode每日一题.200:岛屿数量
79 0
|
人工智能 算法 C++
每日算法系列【LeetCode 1039】多边形三角剖分的最低得分
每日算法系列【LeetCode 1039】多边形三角剖分的最低得分
104 0
|
机器学习/深度学习 人工智能
【第十五届蓝桥杯备赛(bushi,写文凑个数)】蓝桥OJ---排列序数
文章目录 一、题目 1、原题链接 2、题目描述 二、解题报告 1、思路分析 2、时间复杂度 3、代码详解 三、知识风暴 DFS
95 0