Lorenzo Von Matterhorn(思维,二叉树,模拟)

发布于:2024-03-11 ⋅ 阅读:(45) ⋅ 点赞:(0)

Barney lives in NYC. NYC has infinite number of intersections numbered with positive integers starting from 1. There exists a bidirectional road between intersections i and 2i and another road between i and 2i + 1 for every positive integer i. You can clearly see that there exists a unique shortest path between any two intersections.

uploading.4e448015.gif

正在上传…重新上传取消

Initially anyone can pass any road for free. But since SlapsGiving is ahead of us, there will q consecutive events happen soon. There are two types of events:

1. Government makes a new rule. A rule can be denoted by integers vu and w. As the result of this action, the passing fee of all roads on the shortest path from u to v increases by w dollars.

2. Barney starts moving from some intersection v and goes to intersection u where there's a girl he wants to cuddle (using his fake name Lorenzo Von Matterhorn). He always uses the shortest path (visiting minimum number of intersections or roads) between two intersections.

Government needs your calculations. For each time Barney goes to cuddle a girl, you need to tell the government how much money he should pay (sum of passing fee of all roads he passes).

Input

The first line of input contains a single integer q (1 ≤ q ≤ 1 000).

The next q lines contain the information about the events in chronological order. Each event is described in form 1 v u w if it's an event when government makes a new rule about increasing the passing fee of all roads on the shortest path from u to v by w dollars, or in form 2 v u if it's an event when Barnie goes to cuddle from the intersection v to the intersection u.

1 ≤ v, u ≤ 1018, v ≠ u, 1 ≤ w ≤ 109 states for every description line.

Output

For each event of second type print the sum of passing fee of all roads Barney passes in this event, in one line. Print the answers in chronological order of corresponding events.

Example

input

Copy

7
1 3 4 30
1 4 1 2
1 3 6 8
2 4 3
1 6 1 40
2 3 7
2 2 4

output

Copy

94
0
32

Note

In the example testcase:

Here are the intersections used:

uploading.4e448015.gif

正在上传…重新上传取消

  1. Intersections on the path are 3, 1, 2 and 4.
  2. Intersections on the path are 4, 2 and 1.
  3. Intersections on the path are only 3 and 6.
  4. Intersections on the path are 4, 2, 1 and 3. Passing fee of roads on the path are 32, 32 and 30 in order. So answer equals to 32 + 32 + 30 = 94.
  5. Intersections on the path are 6, 3 and 1.
  6. Intersections on the path are 3 and 7. Passing fee of the road between them is 0.
  7. Intersections on the path are 2 and 4. Passing fee of the road between them is 32 (increased by 30 in the first event and by 2 in the second).

思路:

1,本来以为是最短路,但是无法处理多次变化的权值,两个点确定,路径和值本身就确定了,也就不是最短路了

2,用map模拟树的操作,添加权值,或者询问路径值,用递归模拟

代码:

map<int,int>mp;
int ans=0;
void add(int u,int v,int w){//递归
    if(u==v)return ;
    else{
        if(u>v)swap(u,v);
        if(mp.count(v))mp[v]+=w;
        else mp[v]=w;
        v>>=1;
        add(u,v,w);
    }
}
void query(int u,int v){
    if(u==v)return ;
    else{
        if(u>v)swap(u,v);
        ans+=mp[v];
        v>>=1;
        query(u,v);
    }
}
void solve(){//用map模拟树的操作,如何记录边权,如何从A点到B点
    int q;cin>>q;
    while(q--){
        int m,n,w;
        cin>>m;
        if(m==1){
            cin>>m>>n>>w;
            add(m,n,w);
        }else{
            cin>>n>>w;
            ans=0;
            query(n,w);
            cout<<ans<<'\n';
        }
    }
}


网站公告

今日签到

点亮在社区的每一天
去签到