题目链接:http://codeforces.com/problemset/problem/292/E
题目大意:
给定两个长度为n(1~10^5)的数组a[]和数组b[],有两个操作。
1: 1 x y k,令b[y+q]=a[x+q] (0<=q<k)
2: 2 x, 问当前的b[x]的值。
最多操作次数m为10^5.
题目思路:
croc 2013 round1 的最后一题...呵呵了是个线段树水题= =,尼玛啊与round2檫肩而过。
维护两个值,bx、by分别表示替换时在a[]中的起点和在b[]中的起点,by用来定位替换的位置。
初始值bx和by均为0。
如果2 x询问得到的bx为0,那么表示没被替换过。
否则输出a[bx+x-by]的值。
代码:
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <math.h>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <vector>
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
#define ll __int64
#define ls rt<<1
#define rs ls|1
#define lson l,mid,ls
#define rson mid+1,r,rs
#define middle (l+r)>>1
#define clr_all(x,c) memset(x,c,sizeof(x))
#define clr(x,c,n) memset(x,c,sizeof(x[0])*(n+1))
#define eps (1e-8)
#define MOD 1000000007
#define INF 0x3f3f3f3f
#define PI (acos(-1.0))
#pragma comment(linker, "/STACK:102400000,102400000")
template <class T> T _max(T x,T y){return x>y? x:y;}
template <class T> T _min(T x,T y){return x<y? x:y;}
template <class T> T _abs(T x){return (x < 0)? -x:x;}
template <class T> T _mod(T x,T y){return (x > 0)? x%y:((x%y)+y)%y;}
template <class T> void _swap(T &x,T &y){T t=x;x=y;y=t;}
template <class T> void getmax(T& x,T y){x=(y > x)? y:x;}
template <class T> void getmin(T& x,T y){x=(x<0 || y<x)? y:x;}
int TS,cas=1;
const int M=100000+5;
int n,m;
int a[M],b[M];
int bx[M<<2],by[M<<2];
struct node{
int x,y;
node(int _x=0,int _y=0){x=_x,y=_y;}
};
void build(int l,int r,int rt){
bx[rt]=by[rt]=0;
if(l==r) return;
int mid=middle;
build(lson),build(rson);
}
void pushDown(int rt){
if(bx[rt] || by[rt]){
bx[ls]=bx[rs]=bx[rt];
by[ls]=by[rs]=by[rt];
bx[rt]=by[rt]=0;
}
}
void update(int l,int r,int rt,int L,int R,int x,int y){
if(L<=l && r<=R){
bx[rt]=x,by[rt]=y;
return;
}
pushDown(rt);
int mid=middle;
if(L<=mid) update(lson,L,R,x,y);
if(mid<R) update(rson,L,R,x,y);
}
node query(int l,int r,int rt,int p){
if(l==r) return node(bx[rt],by[rt]);
pushDown(rt);
int mid=middle;
if(p<=mid) return query(lson,p);
else return query(rson,p);
}
void run(){
int i,j;
for(i=1;i<=n;i++) scanf("%d",&a[i]);
for(i=1;i<=n;i++) scanf("%d",&b[i]);
build(1,n,1);
int x,y,k;
while(m--){
scanf("%d",&i);
if(i==1){
scanf("%d%d%d",&x,&y,&k);
update(1,n,1,y,y+k-1,x,y);
}else{
scanf("%d",&x);
node t=query(1,n,1,x);
if(t.x == 0) printf("%d\n",b[x]);
else printf("%d\n",a[t.x+x-t.y]);
}
}
}
void preSof(){
}
int main(){
//freopen("input.txt","r",stdin);
//freopen("output.txt","w",stdout);
preSof();
//run();
while((~scanf("%d%d",&n,&m))) run();
//for(scanf("%d",&TS);cas<=TS;cas++) run();
return 0;
}