Codeforces Round #481 (Div. 3) 前缀和+lower_bound

There are nn dormitories in Berland State University, they are numbered with integers from 11 to nn. Each dormitory consists of rooms, there are aiai rooms in ii-th dormitory. The rooms in ii-th dormitory are numbered from 11 to aiai.

A postman delivers letters. Sometimes there is no specific dormitory and room number in it on an envelope. Instead of it only a room number among all rooms of all nn dormitories is written on an envelope. In this case, assume that all the rooms are numbered from 11 to a1+a2++ana1+a2+⋯+an and the rooms of the first dormitory go first, the rooms of the second dormitory go after them and so on.

For example, in case n=2n=2a1=3a1=3 and a2=5a2=5 an envelope can have any integer from 11 to 88 written on it. If the number 77 is written on an envelope, it means that the letter should be delivered to the room number 44 of the second dormitory.

For each of mm letters by the room number among all nn dormitories, determine the particular dormitory and the room number in a dormitory where this letter should be delivered.

Input

The first line contains two integers nn and mm (1n,m2105)(1≤n,m≤2⋅105) — the number of dormitories and the number of letters.

The second line contains a sequence a1,a2,,ana1,a2,…,an (1ai1010)(1≤ai≤1010), where aiai equals to the number of rooms in the ii-th dormitory. The third line contains a sequence b1,b2,,bmb1,b2,…,bm (1bja1+a2++an)(1≤bj≤a1+a2+⋯+an), where bjbj equals to the room number (among all rooms of all dormitories) for the jj-th letter. All bjbj are given in increasing order.

Output

Print mm lines. For each letter print two integers ff and kk — the dormitory number ff (1fn)(1≤f≤n) and the room number kk in this dormitory (1kaf)(1≤k≤af) to deliver the letter.

Examples
input
Copy
3 6
10 15 12
1 9 12 23 26 37
output
Copy
1 1
1 9
2 2
2 13
3 1
3 12
input
Copy
2 3
5 10000000000
5 6 9999999999
output
Copy
1 5
2 1
2 9999999994
Note

In the first example letters should be delivered in the following order:

  • the first letter in room 11 of the first dormitory
  • the second letter in room 99 of the first dormitory
  • the third letter in room 22 of the second dormitory
  • the fourth letter in room 1313 of the second dormitory
  • the fifth letter in room 11 of the third dormitory
  • the sixth letter in room 1212 of the third dormitory
题意:给出宿舍楼的数量和一栋宿舍楼的房间数量,按顺序排序,给出房间号,确定宿舍楼号
思路:前缀和+lower_bound
需要注意的是lower_bound的使用
#include<bits/stdc++.h>
using namespace std;
const int N =2e5+5;
typedef long long ll;
int n,m;
ll a[N],b;
ll sum[N];
int main()
{
    cin>>n>>m;
    memset(sum,0,sizeof(sum));
    for(int i=1; i<=n; i++)
    {
        cin>>a[i];
        sum[i]=sum[i-1]+a[i];
       // cout<<sum[i]<<endl;
    }
    for(int i=1; i<=m; i++)
    {
         cin>>b;   //2种方法一样,求出的是最小
         int pos=lower_bound(sum+1,sum+1+n,b)-(sum); //int pos=lower_bound(sum+1,sum+1+n,b)-(sum+1);
         cout<<pos<<" "<<b-sum[pos-1]<<endl;   //cout<<pos+1<<" "<<b-sum[pos]<<endl;
 
    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值