• 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;
    }
    
  • 相关阅读:
    Fork/Join框架基本使用
    服务端高并发分布式架构演进之路
    Netty专题(一)-----计算机网络、TCP/ICP、linux网络I/O模型
    Nginx专题(四)-----https、nginx高可用
    Nginx专题(三)-----核心原理、跨域解决、防盗链、缓存以及压缩
    微信开放平台开发第三方授权登陆(四):微信小程序
    微信开放平台开发第三方授权登陆(三):微信公众号
    微信开放平台开发第三方授权登陆(二):PC网页端
    微信开放平台开发第三方授权登陆(一)-----开发前准备
    Mysql:如果数据存在则更新,不存在则插入
  • 原文地址:https://www.cnblogs.com/LiangYC1021/p/12716545.html
Copyright © 2020-2023  润新知