zoukankan      html  css  js  c++  java
  • D

    A lot of battleships of evil are arranged in a line before the battle. Our commander decides to use our secret weapon to eliminate the battleships. Each of the battleships can be marked a value of endurance. For every attack of our secret weapon, it could decrease the endurance of a consecutive part of battleships by make their endurance to the square root of it original value of endurance. During the series of attack of our secret weapon, the commander wants to evaluate the effect of the weapon, so he asks you for help.
    You are asked to answer the queries that the sum of the endurance of a consecutive part of the battleship line.

    Notice that the square root operation should be rounded down to integer.

    InputThe input contains several test cases, terminated by EOF.
      For each test case, the first line contains a single integer N, denoting there are N battleships of evil in a line. (1 <= N <= 100000)
      The second line contains N integers Ei, indicating the endurance value of each battleship from the beginning of the line to the end. You can assume that the sum of all endurance value is less than 2 63.
      The next line contains an integer M, denoting the number of actions and queries. (1 <= M <= 100000)
      For the following M lines, each line contains three integers T, X and Y. The T=0 denoting the action of the secret weapon, which will decrease the endurance value of the battleships between the X-th and Y-th battleship, inclusive. The T=1 denoting the query of the commander which ask for the sum of the endurance value of the battleship between X-th and Y-th, inclusive.
    OutputFor each test case, print the case number at the first line. Then print one line for each query. And remember follow a blank line after each test case.Sample Input
    10
    1 2 3 4 5 6 7 8 9 10
    5
    0 1 10
    1 1 10
    1 1 5
    0 5 8
    1 4 8
    Sample Output
    Case #1:
    19
    7
    6

     剪枝:if(no[now].r-no[now].l+1 == no[now].val)    return ;


    #define ll long long
    #define TLE std::ios::sync_with_stdio(false);   cin.tie(NULL);   cout.tie(NULL);   cout.precision(10);
    #define lc now<<1
    #define rc now<<1|1
    #define ls now<<1,l,mid
    #define rs now<<1|1,mid+1,r
    #define half no[now].l+((no[now].r-no[now].l)>>1)
    const int mxn = 100000+5; int mx;
    struct node
    {
        int l,r,lazy;
        ll val, num;
    }no[mxn<<2];
    void pushup(int now) { no[now].val = no[lc].val + no[rc].val ; return ;}
    void build(int now , int l,int r)
    {
        no[now].l = l;no[now].r = r;
        if(l==r)
        {
            scanf("%lld",&no[now].val);
            return ;
        }
        int mid = l+((r-l)>>1);
        build(lc,l,mid);
        build(rc,mid+1,r);
        pushup(now);
    }
    ll query(int now,int l,int r)
    {
        if(no[now].l>=l && r>=no[now].r)
            return no[now].val;
        ll mid = half;
        ll cnt = 0 ;
        if(l<=mid)
            cnt += query(lc,l,r);
        if(r>mid)
            cnt += query(rc,l,r);
        return cnt;
    }
    void updata(int now,int l,int r)
    {
        if(no[now].r-no[now].l+1 == no[now].val)    return ;
        if(no[now].l == no[now].r)
        {
            no[now].val = sqrt(no[now].val) ;
            return ;
        }
        int mid = half;
        if(l<=mid)
            updata(lc,l,r);
        if(r>mid)
            updata(rc,l,r);
        pushup(now);
    }
      //  #define LOCAL
    int main()
    {
        TLE;
        int t,n,l,r,ase=1;
    #ifdef LOCAL
        freopen("in.txt","r",stdin);
        freopen("out.txt","w",stdout);
    #endif
        while(~scanf("%d",&n))
        {
            printf("Case #%d:
    ",ase++);
            build(1,1,n);
            scanf("%d",&t);
            while(t--)
            {
                int ch;
                scanf("%d %d %d",&ch,&l,&r);
                if(l>r) swap(l,r);
                if(ch)
                    printf("%lld
    ",query(1,l,r));
                else
                    updata(1,l,r);
            }
            printf("
    ");
        }
        return 0;
    }
    所遇皆星河
  • 相关阅读:
    实验四 决策树算法及应用
    实验三 朴素贝叶斯算法及应用
    实验二 K-近邻算法及应用
    实验一 感知器及其应用
    实验三
    实验二 结构化分析与设计
    实验一 Visio的使用
    ATM管理系统
    流程图与活动图的区别与联系
    四则运算
  • 原文地址:https://www.cnblogs.com/Shallow-dream/p/11749712.html
Copyright © 2011-2022 走看看