import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random #sys.setrecursionlimit(10**9) #sys.set_int_max_str_digits(0) input = sys.stdin.readline class segtree(): n=1 size=1 log=2 d=[0] op=None e=10**15 def __init__(self,V,OP,E): self.n=len(V) self.op=OP self.e=E self.log=(self.n-1).bit_length() self.size=1<>i) def get(self,p): assert 0<=p and p>=1 r>>=1 return self.op(sml,smr) def all_prod(self): return self.d[1] def max_right(self,l,f): assert 0<=l and l<=self.n assert f(self.e) if l==self.n: return self.n l+=self.size sm=self.e while(1): while(l%2==0): l>>=1 if not(f(self.op(sm,self.d[l]))): while(l1 and (r%2)): r>>=1 if not(f(self.op(self.d[r],sm))): while(r dist[i][K] + dist[K][j]: dist[i][j] = dist[i][K] + dist[K][j] cost = [0 for i in range(k)] for i in range(k): cost[i] = dist[s[i]][s[i+1]] st = segtree(cost,operator.add,0) for i in range(q): t,x,y = map(int,input().split()) if t == 1: s[x] = y-1 if x != 0: st.set(x-1,dist[s[x-1]][s[x]]) if x != k: st.set(x,dist[s[x+1]][s[x]]) else: if x == y: print(0) continue print(st.prod(x,y))