POJ--3368--Frequent values【RMQ】

链接:http://poj.org/problem?id=3368

题意:给你一个序列,n个数,序列是有序的,q个询问,问区间(l,r)中出现频率最高的数字出现了几次。

思路:因为序列是有序的,可以把序列相同部分合并,然后存成一个新的数组,并增加一个值num表示数字出现的次数,找区间(l,r)中出现频率最高的数字,就是找num的最大值了,区间最大值,RMQ可做,线段树也可做,我用RMQ做的。注意(l,r)没有取完它们表示的数字区间时的特判。

#include<cstring>
#include<string>
#include<fstream>
#include<iostream>
#include<iomanip>
#include<cstdio>
#include<cctype>
#include<algorithm>
#include<queue>
#include<map>
#include<set>
#include<vector>
#include<stack>
#include<ctime>
#include<cstdlib>
#include<functional>
#include<cmath>
using namespace std;
#define PI acos(-1.0)
#define MAXN 2001000
#define eps 1e-7
#define INF 0x7FFFFFFF
#define LLINF 0x7FFFFFFFFFFFFFFF
#define seed 1313131
#define MOD 1000000007
#define ll long long
#define ull unsigned ll
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1

struct node{
    int l,r,num;
}bb[101000];
int pos[101000];
int aa[101000];
int maxsum[101000][25];
void RMQ(int num){
    int i,j;
    for(i=0;i<=num;i++){
        maxsum[i][0] = bb[i].num;
    }
    for(j=1;j<20;j++){
        int t = 1 << j;
        for(i=1;i+t-1<=num;i++){
            maxsum[i][j] = max(maxsum[i][j-1], maxsum[i+(1<<(j-1))][j-1]);
        }
    }
}
int main(){
    int n,q,i,j,cnt;
    int a,b;
    while(scanf("%d",&n),n){
        scanf("%d",&q);
        cnt = 1;
        scanf("%d",&aa[1]);
        pos[1] = cnt;
        bb[cnt].num = 1;
        bb[cnt].l = 1;
        for(i=2;i<=n;i++){
            scanf("%d",&aa[i]);
            if(aa[i]==aa[i-1]){
                pos[i] = cnt;
                bb[cnt].num++;
            }
            else{
                bb[cnt].r = i - 1;
                cnt++;
                pos[i] = cnt;
                bb[cnt].l = i;
                bb[cnt].num = 1;
            }
        }
        bb[cnt].r = n;
        RMQ(cnt);
        while(q--){
            scanf("%d%d",&a,&b);
            if(pos[a]==pos[b])  printf("%d\n",b-a+1);
            else if(pos[b]-pos[a]==1)   printf("%d\n",max(bb[pos[a]].r-a+1,b-bb[pos[b]].l+1));
            else{
                int ans = 0;
                ans = max(bb[pos[a]].r-a+1,b-bb[pos[b]].l+1);
                b = pos[b] - 1;
                a = pos[a] + 1;
                int k = (int)(log((double)b-a+1)/log(2.0));
                int t2 = max(maxsum[a][k],maxsum[b-(1<<k)+1][k]);
                ans = max(ans,t2);
                printf("%d\n",ans);
            }
        }
    }
    return 0;
}
时间: 2024-10-06 01:20:14

POJ--3368--Frequent values【RMQ】的相关文章

POJ 3368 Frequent values (基础RMQ)

Frequent values Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 14742   Accepted: 5354 Description You are given a sequence of n integersa1 , a2 , ... , an in non-decreasing order. In addition to that, you are given several queries consi

POJ 3368 Frequent values(RMQ)

Frequent values Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 15134   Accepted: 5519 Description You are given a sequence of n integers a1 , a2 , ... , an in non-decreasing order. In addition to that, you are given several queries cons

(简单) POJ 3368 Frequent values,RMQ。

Description You are given a sequence of n integers a1 , a2 , ... , an in non-decreasing order. In addition to that, you are given several queries consisting of indices i and j (1 ≤ i ≤ j ≤ n). For each query, determine the most frequent value among t

POJ 3368 Frequent values(RMQ)

Description You are given a sequence of n integers a1 , a2 , ... , an in non-decreasing order. In addition to that, you are given several queries consisting of indices i and j (1 ≤ i ≤ j ≤ n). For each query, determine the most frequent value among t

UVA - 11235 —— Frequent values 【RMQ】

http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=23846 题解: 1. 游程编码(将序列转化为(value, num)的一段一段的键值对形式)后,将问题转化为几乎是一个RMQ问题,仅有一些细节要单独考虑 2. 如果查询的两个下标l, r属于同一段键值对,那么答案就是(r - l + 1):否则,答案是三个(或两个)值的最大值,详情见代码: #include <iostream> #include <cstdio&g

poj 3368 Frequent values(一维RMQ)

题意:求给定区间中出现最多的数的出现次数,原数列为非降序列: 思路:将原数列处理为当前数在连续数中的出现顺序:从后向前处理: 对于查询区间[l,r],先通过二分计算与a[r]相同的数的个数(num[r]可能大于1):剩余区间rmq求最大值:在求两种情况的最大值: #include<cstdio> #include<cstring> #include<algorithm> using namespace std; int n,m; int num[500010],mm[5

POJ 3368 Frequent values

Frequent values Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 13051 Accepted: 4792 Description You are given a sequence of n integers a1 , a2 , ... , an in non-decreasing order. In addition to that, you are given several queries consisti

poj 3368 Frequent values 解题报告

题目链接:http://poj.org/problem?id=3368 题目意思:给出一段 n 个数的序列你,对于区间 [l, r] 的询问,找出 出现频率最高的数的次数.考虑到序列中的数是非递减的,也就是相同的数会连续不间断地在一起,于是就才有了代码中这个部分来预判了: if (s > t)        printf("%d\n", ans); 这个人写RMQ 写得不错:http://dongxicheng.org/structure/lca-rmq/ 这题就是套模板的,纪念

poj 3368 Frequent values(线段树解法)

题目链接:http://poj.org/problem?id=3368 题目大意:给你一段不下降的序列,求给定区间里出现次数最多的那个数字的次数. 思路:首先看到这题时,第一感觉线段树,但是仔细一看问题来啦,用线段数我怎么才能计算出某段区间里出现的那个数,因为出现最多的那个数可能不是在他它的左儿子上也不是在它的右儿子上,可能在当他们合并成一个区间时就出现啦,但是这儿我们需要注意的就是,题目给的是一段不下降的序列,那么突破口就出来啦,因为如果出现相同的数字,那么它们一定是连续的.所以我们只需要在普

poj 3368 Frequent values(RMQ)

1 /************************************************************ 2 题目: Frequent values(poj 3368) 3 链接: http://poj.org/problem?id=3368 4 题意: 给出n个数和Q个询问(l,r),对于每个询问求出(l,r)之 5 间连续出现次数最多的次数 6 算法: RMQ 7 思路: 借助数组f[i].表示第i位前面有f[i]个相同的数.对于 8 每个区间(l,r).暴力求前面几个