Holes

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 ≤ 105, 1 ≤ 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

Output

8 7
8 5
7 3
#include <iostream>
#include<string.h>
#include<algorithm>
#include<math.h>
#include <stdio.h>
using namespace std;
const int N=200000+100;
int n,m,sq,num;
int a[N],bl[N],c[N],b[N],d[N], l[N], r[N];

int main()
{
    while(~scanf("%d%d",&n,&m)){
        sq=sqrt(n);
        num = n / sq;
        if(n % sq) num++;//不能整除加1
        //块的范围
        for(int i = 1; i <= num; i++){
            l[i] = (i - 1) * sq + 1;
            r[i] = i * sq;
        }
        r[num] = n;
        for(int i=1;i<=n;i++){
            bl[i]=(i-1)/sq+1;
            scanf("%d",&a[i]);
        }
        for(int i=n;i>=1;i--){
            d[i]=i;
            b[i]=i+a[i];
            c[i]=1;
            if (b[i]<=n&&bl[i]==bl[b[i]]){
                d[i]=d[b[i]];
                c[i]=c[b[i]]+1;
                b[i]=b[b[i]];
            }
            //printf("%d %d\n",b[i],c[i]);
        }
        int i,j,k;
        while(m--){
            scanf("%d",&i);
            if(i==1){
                scanf("%d",&j);
                int ans1=0,ans2=0;
                while (n>=j){
                    ans2+=c[j];
                    ans1=d[j];
                    j=b[j];
                }
                printf("%d %d\n",ans1,ans2);
            }else{
                scanf("%d%d",&j,&k);
                int I=j;
                a[I]=k;
                for(int t=r[bl[I]];t>=l[bl[I]];t--){
                    d[t]=t;
                    b[t]=t+a[t];
                    c[t]=1;
                    if(b[t]<=n&&bl[t]==bl[b[t]]){
                        d[t]=d[b[t]];
                        c[t]=c[b[t]]+1;
                        b[t]=b[b[t]];
                    }
                    //printf("%d %d\n",b[i],c[i]);
                }
            }
        }
    }
    //cout << "Hello world!" << endl;
    return 0;
}

 

全部评论

相关推荐

牛客96763241...:杭电✌️也是打完招呼,没人回吗
点赞 评论 收藏
分享
10-25 22:20
门头沟学院 Java
代码飞升:同学院本,个人亮点去了,打招呼里面的废话也去了,学院本就是路边一条,明天拉满然后该学还是学,小厂也行尽量先有一段实习。另外你的项目描述写的不好,具体列一下可被提问的点,然后量化一下指标或者收益吧
投了多少份简历才上岸
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务