洛谷——P2681 眾數
阿新 • • 發佈:2017-12-11
ice line relative ron box sin -o con while
輸出樣例#1: 復制
P2681 眾數
題目背景
Alice和Bob玩遊戲
題目描述
Alice現在有一個序列a1、a2...an
現在她需要Bob支持詢問一個區間內的眾數,還要支持修改一個位置的ai
輸入輸出格式
輸入格式:
第一行兩個整數n,m
第二行n個整數,表示a1..an
接下來m行,每行3個整數,flag,x,y
如果flag=0,表示詢問[x,y]區間內的眾數,如果有多個輸出較小的
如果flag=1,表示將a[x]改為y
輸出格式:
對於每個flag=0的詢問,每行輸出一個整數表示答案
輸入輸出樣例
輸入樣例#1: 復制5 3 1 1 2 2 1 0 1 4 1 2 3 0 1 4
1 2
說明
對於100%的數據n,m<=1000
對於查詢操作滿足x<=y
任意時刻0<ai<=1e9
#include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #define N 1010 using namespace std; int n,m,p,x,y,s,sum,ans,a[N],b[N],maxn; int read() {int 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; } int work(int x,int y) { for(int i=x;i<=y;i++) b[++s]=a[i]; sort(b+1,b+1+s); for(int i=2;i<=s;i++)if(b[i]==b[i-1]) sum++; else { if(sum>maxn) maxn=sum,ans=b[i-1]; sum=1; } if(sum>maxn) maxn=sum,ans=b[s]; printf("%d\n",ans); } int main() { n=read(),m=read(); for(int i=1;i<=n;i++) a[i]=read(); while(m--) { s=0,maxn=0,sum=1; p=read(),x=read(),y=read(); if(p==0) work(x,y); else a[x]=y; } return 0; }
洛谷——P2681 眾數