I Hate It(9.3)

刚开始刷线段树的题目,线段树就像是一棵二叉树,用于解决连续区间的动态查询问题,

图论的二叉树那块很懵,看了几个线段树例题和构造,自己走一遍构造过程,

基本了解构造和更新的操作,刚放上的题,咦,我一看,有中文的,还是线段树讲解里的例题,果断水水试试。

 

 

 

I Hate It

Time Limit : 9000/3000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other)

Total Submission(s) : 53   Accepted Submission(s) : 15

Problem Description

很多学校流行一种比较的习惯。老师们很喜欢询问,从某某到某某当中,分数最高的是多少。
这让很多学生很反感。

不管你喜不喜欢,现在需要你做的是,就是按照老师的要求,写一个程序,模拟老师的询问。当然,老师有时候需要更新某位同学的成绩。

 

 

Input

本题目包含多组测试,请处理到文件结束。 在每个测试的第一行,有两个正整数 N 和 M ( 0

 

 

Output

对于每一次询问操作,在一行里面输出最高成绩。

 

 

Sample Input

 

5 6 1 2 3 4 5 Q 1 5 U 3 6 Q 3 4 Q 4 5 U 2 9 Q 1 5

 

 

Sample Output

 

5 6 5 9 [hint]Huge input,the C function scanf() will work better than cin[/hint]

题意:

思路:

抱着能水过则水过的态度,时间挺长的,直接写个简单模拟,果然tle

建树和更新操作就是一种方法,这个题需要注意的就是数组的大小要足够大,因为这个地方wa了好几发

#include
#include
#include
#include
#include
using namespace std;
/*struct g
{
    int a,b;
    }map[200001];*/
int map[1000000];
void maxval(int i)
{
   map[i]=max(map[i*2],map[i*2+1]);
    }
void build(int l,int r,int t)
{
    if(l==r)
    {
        scanf("%d",&map[t]);
        return ;
        }
    int m=(l+r)/2;
    build(l,m,2*t);
    build(m+1,r,2*t+1);
    maxval(t);
    }
void update(int a,int b,int l,int r,int t)
{
    if(l==r)
    {
       map[t]=b;
        return ;
        }
    int m=(l+r)/2;
    if(a<=m)
        update(a,b,l,m,2*t);
    else
        update(a,b,m+1,r,2*t+1);
    maxval(t);
    }
int maxx(int L,int R,int l,int r,int t)
{
    int ans=0;
    if(L<=l&&r<=R)
    {
        return map[t];
        }
    int m=(l+r)/2;
    if(L<=m)ans=max(ans,maxx(L,R,l,m,t*2));
    if(R>m)ans=max(ans,maxx(L,R,m+1,r,t*2+1));
    return ans;
    }
int main()
{
    int n,m;
    int a,b;
    char ch[2];
    while(scanf("%d %d",&n,&m)!=EOF)
    {
        build(1,n,1);
        while(m--)
        {
            scanf("%s%d%d",&ch,&a,&b);
            if(ch[0]=='Q')
                printf("%d\n",maxx(a,b,1,n,1));
            else
                update(a,b,1,n,1);
            }
        }
    return 0;
    }

 

 

你可能感兴趣的:(I Hate It(9.3))