CF w2d1 C. Banh-mi

JATC loves Banh-mi (a Vietnamese food). His affection for Banh-mi is so much that he always has it for breakfast. This morning, as usual, he buys a Banh-mi and decides to enjoy it in a special way.

First, he splits the Banh-mi into n parts, places them on a row and numbers them from 1 through n. For each part i, he defines the deliciousness of the part as xi∈{0,1}. JATC's going to eat those parts one by one. At each step, he chooses arbitrary remaining part and eats it. Suppose that part is the i-th part then his enjoyment of the Banh-mi will increase by xi and the deliciousness of all the remaining parts will also increase by xi. The initial enjoyment of JATC is equal to 0.

For example, suppose the deliciousness of 3 parts are [0,1,0]. If JATC eats the second part then his enjoyment will become 1 and the deliciousness of remaining parts will become [1,,1]. Next, if he eats the first part then his enjoyment will become 2 and the remaining parts will become [,_,2]. After eating the last part, JATC's enjoyment will become 4.

However, JATC doesn't want to eat all the parts but to save some for later. He gives you q queries, each of them consisting of two integers li and ri. For each query, you have to let him know what is the maximum enjoyment he can get if he eats all the parts with indices in the range [li,ri] in some order.

All the queries are independent of each other. Since the answer to the query could be very large, print it modulo 10^9+7.

Input

The first line contains two integers n and q (1≤n,q≤100000).

The second line contains a string of n characters, each character is either '0' or '1'. The i-th character defines the deliciousness of the i-th part.

Each of the following q lines contains two integers li and ri (1≤li≤ri≤n) — the segment of the corresponding query.

Output

Print q lines, where i-th of them contains a single integer — the answer to the i-th query modulo 109+7.

Examples

inputCopy
4 2
1011
1 4
3 4
outputCopy
14
3
inputCopy
3 2
111
1 2
3 3
outputCopy
3
1

Note

In the first example:

For query 1: One of the best ways for JATC to eats those parts is in this order: 1, 4, 3, 2.
For query 2: Both 3, 4 and 4, 3 ordering give the same answer.
In the second example, any order of eating parts leads to the same answer.

#include<bits/stdc++.h>
const int mod=1e9+7,maxn=1e6+5;
using namespace std;
int main()
{
	int n,q,pre[100005]={0},power[300005]={1};
	string s;
	cin>>n>>q>>s;
	for(int i=1;i<=n;i++)pre[i]=pre[i-1]+s[i-1]-'0';
	for(int i=1;i<=3*n;i++)power[i]=power[i-1]*2%mod;
	while(q--){
		int l,r;
		cin>>l>>r;
		l--;r--;
		int a=pre[r+1]-pre[l];
		int b=r+1-l-a;
		//cout<<power[a]<<endl;
		cout << ((power[a+b]-power[b])%mod+mod)%mod<<endl;
	}
	return 0;
}
posted @ 2020-04-16 22:56  LiangYC1021  阅读(159)  评论(0编辑  收藏  举报