zoukankan      html  css  js  c++  java
  • E

    题目链接:http://codeforces.com/problemset/problem/13/E

    Little Petya likes to play a lot. Most of all he likes to play a game «Holes». This is a game for one person with following rules:

    There are N holes located in a single row and numbered from left to right with numbers from 1 to N. Each hole has it's own power (hole number i has the power ai). If you throw a ball into hole i it will immediately jump to hole i + ai, then it will jump out of it and so on. If there is no hole with such number, the ball will just jump out of the row. On each of the M moves the player can perform one of two actions:

    • Set the power of the hole a to value b.
    • Throw a ball into the hole a and count the number of jumps of a ball before it jump out of the row and also write down the number of the hole from which it jumped out just before leaving the row.

    Petya is not good at math, so, as you have already guessed, you are to perform all computations.

    Input

    The first line contains two integers N and M (1 ≤ N ≤ 1051 ≤ M ≤ 105) — the number of holes in a row and the number of moves. The second line contains N positive integers not exceeding N — initial values of holes power. The following M lines describe moves made by Petya. Each of these line can be one of the two types:

    • a b
    • a

    Type 0 means that it is required to set the power of hole a to b, and type 1 means that it is required to throw a ball into the a-th hole. Numbers a and b are positive integers do not exceeding N.Output

    For each move of the type 1 output two space-separated numbers on a separate line — the number of the last hole the ball visited before leaving the row and the number of jumps it made.

    Examples

    Input
    8 5
    1 1 1 1 1 2 8 2
    1 1
    0 1 3
    1 1
    0 3 4
    1 2
    Output8 7
    8 5
    7 3
    思路:

    x[i]代表在i位置跳出所属的块需要的步数
    y[i]代表在i位置跳出所属的块到达的位置

    看代码:

    #include<iostream>
    #include<cstdio>
    #include<algorithm>
    #include<cstring>
    #include<vector>
    #include<stack>
    #include<map>
    #include<cstdio>
    #include<algorithm>
    #include<cstring>
    #include<vector>
    #include<stack>
    #include<map>
    #include<queue>
    #include<cmath>
    using namespace std;
    typedef long long LL;
    typedef unsigned long long ull;
    #define sc1(a) scanf("%lld",&a)
    #define pf1(a) printf("%lld
    ",a)
    #define lson l,mid,rt<<1
    #define rson mid+1,r,rt<<1|1
    const LL INF=1e18;
    const ull base=2333;
    const int maxn=1e5+50;
    const int maxm=1e3+50;
    const int maxv=1e6+5;
    const int mod=1e9+7;
    const int ba=3e5;
    LL N,M;
    LL a[maxn];
    LL block;
    LL x[maxn],y[maxn];
    LL blo[maxn];
    /**
    x[i]代表在i位置跳出所属的块需要的步数
    y[i]代表在i位置跳出所属的块到达的位置
    */
    void Build()
    {
        for(int i=N;i>=1;i--)
        {
            x[i]=(i+a[i])>min(N,block*blo[i])?1:x[i+a[i]]+1;
            y[i]=(i+a[i])>min(N,block*blo[i])?i+a[i]:y[i+a[i]];
        }
    }
    void Update(LL u,LL v)
    {
        a[u]=v;
        for(int i=u;i>(blo[u]-1)*block;i--) //后面的没有影响
        {
            x[i]=(i+a[i])>min(N,block*blo[i])?1:x[i+a[i]]+1;
            y[i]=(i+a[i])>min(N,block*blo[i])?i+a[i]:y[i+a[i]];
        }
    }
    void Query(LL u)
    {
        LL ans1=0,ans2=0;
        while(u<=N)
        {
            if(y[u]>N) ans1=u;
            ans2+=x[u];//
            u=y[u];
        }
        while(ans1+a[ans1]<=N) ans1=ans1+a[ans1];//最后一个跳出去的位置
        printf("%lld %lld
    ",ans1,ans2);
    }
    int main()
    {
        sc1(N);sc1(M);
        block=sqrt(N);
        for(int i=1;i<=N;i++)
        {
            sc1(a[i]);
            blo[i]=(i-1)/block+1;
        }
        Build();
        LL opt,u,v;
        while(M--)
        {
            sc1(opt);
            if(opt==0)
            {
                sc1(u);sc1(v);
                Update(u,v);
            }
            else
            {
                sc1(u);//查询u
                Query(u);
            }
        }
        return 0;
    }
    /**
    
    */
    当初的梦想实现了吗,事到如今只好放弃吗~
  • 相关阅读:
    SpringBoot 项目发现的错误
    maven项目SpringBoot框架
    eclipse不能正常启动
    @Service、@Controller、@Repository、@Resource注解的作用
    navicat 不能正常启动
    序列化和反序列化
    hibernate主键生成策略
    eclipse 安装注意事项之一
    js-cookie的使用说明
    微信小程序自定义顶部导航栏,添加背景图,透明色等
  • 原文地址:https://www.cnblogs.com/caijiaming/p/12373394.html
Copyright © 2011-2022 走看看