Search is not available for this dataset
name
stringlengths
2
112
description
stringlengths
29
13k
source
int64
1
7
difficulty
int64
0
25
solution
stringlengths
7
983k
language
stringclasses
4 values
103_B. Cthulhu
...Once upon a time a man came to the sea. The sea was stormy and dark. The man started to call for the little mermaid to appear but alas, he only woke up Cthulhu... Whereas on the other end of the world Pentagon is actively collecting information trying to predict the monster's behavior and preparing the secret super weapon. Due to high seismic activity and poor weather conditions the satellites haven't yet been able to make clear shots of the monster. The analysis of the first shot resulted in an undirected graph with n vertices and m edges. Now the world's best minds are about to determine whether this graph can be regarded as Cthulhu or not. To add simplicity, let's suppose that Cthulhu looks from the space like some spherical body with tentacles attached to it. Formally, we shall regard as Cthulhu such an undirected graph that can be represented as a set of three or more rooted trees, whose roots are connected by a simple cycle. It is guaranteed that the graph contains no multiple edges and self-loops. <image> Input The first line contains two integers β€” the number of vertices n and the number of edges m of the graph (1 ≀ n ≀ 100, 0 ≀ m ≀ <image>). Each of the following m lines contains a pair of integers x and y, that show that an edge exists between vertices x and y (1 ≀ x, y ≀ n, x β‰  y). For each pair of vertices there will be at most one edge between them, no edge connects a vertex to itself. Output Print "NO", if the graph is not Cthulhu and "FHTAGN!" if it is. Examples Input 6 6 6 3 6 4 5 1 2 5 1 4 5 4 Output FHTAGN! Input 6 5 5 6 4 6 3 1 5 1 1 2 Output NO Note Let us denote as a simple cycle a set of v vertices that can be numbered so that the edges will only exist between vertices number 1 and 2, 2 and 3, ..., v - 1 and v, v and 1. A tree is a connected undirected graph consisting of n vertices and n - 1 edges (n > 0). A rooted tree is a tree where one vertex is selected to be the root.
2
8
import java.io.*; import java.util.*; public class Pr103B { public static void main(String[] args) throws IOException { new Pr103B().run(); } BufferedReader in; PrintWriter out; StringTokenizer st; String nextToken() throws IOException { while (st == null || !st.hasMoreTokens()) { st = new StringTokenizer(in.readLine()); } return st.nextToken(); } int nextInt() throws IOException { return Integer.parseInt(nextToken()); } void run() throws IOException { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out, true); solve(); out.flush(); } ArrayList<Integer>[] eds; boolean[] was; int[] colFt; int n; void finsKtul(int v) { was[v] = true; int a = -1; int b = -1; for (int i : eds[v]) { colFt = new int[n]; if (!isTree(i, v)) { if (a == -1) { a = i; } else if (b == -1) { b = i; } else { out.println("NO"); out.flush(); System.exit(0); } } } if (a == -1 && b == -1) { out.println("NO"); out.flush(); System.exit(0); } if (b == -1) { finsKtul(a); } else if (was[a] && was[b]) { out.println("FHTAGN!"); out.flush(); System.exit(0); } else if (!was[a]) { finsKtul(a); } else { finsKtul(b); } } boolean isTree(int st, int par) { colFt[st] = 1; boolean ans = true; for (int i : eds[st]) { if (i != par) { if (colFt[i] == 1) { return false; } if (colFt[i] == 0) { if (ans) { ans = isTree(i, st); } } } } colFt[st] = 2; return ans; } boolean[] was1; void dfs1(int i) { was1[i] = true; for (int j : eds[i]) { if (!was1[j]) { dfs1(j); } } } void solve() throws IOException { n = nextInt(); int m = nextInt(); eds = new ArrayList[n]; for (int i = 0; i < n; i++) { eds[i] = new ArrayList<Integer>(); } for (int i = 0; i < m; i++) { int a = nextInt() - 1; int b = nextInt() - 1; eds[a].add(b); eds[b].add(a); } was1 = new boolean[n]; dfs1(0); for (int i = 0; i < n; i++) { if (!was1[i]) { out.println("NO"); out.flush(); System.exit(0); } } was = new boolean[n]; finsKtul(0); } }
JAVA
103_B. Cthulhu
...Once upon a time a man came to the sea. The sea was stormy and dark. The man started to call for the little mermaid to appear but alas, he only woke up Cthulhu... Whereas on the other end of the world Pentagon is actively collecting information trying to predict the monster's behavior and preparing the secret super weapon. Due to high seismic activity and poor weather conditions the satellites haven't yet been able to make clear shots of the monster. The analysis of the first shot resulted in an undirected graph with n vertices and m edges. Now the world's best minds are about to determine whether this graph can be regarded as Cthulhu or not. To add simplicity, let's suppose that Cthulhu looks from the space like some spherical body with tentacles attached to it. Formally, we shall regard as Cthulhu such an undirected graph that can be represented as a set of three or more rooted trees, whose roots are connected by a simple cycle. It is guaranteed that the graph contains no multiple edges and self-loops. <image> Input The first line contains two integers β€” the number of vertices n and the number of edges m of the graph (1 ≀ n ≀ 100, 0 ≀ m ≀ <image>). Each of the following m lines contains a pair of integers x and y, that show that an edge exists between vertices x and y (1 ≀ x, y ≀ n, x β‰  y). For each pair of vertices there will be at most one edge between them, no edge connects a vertex to itself. Output Print "NO", if the graph is not Cthulhu and "FHTAGN!" if it is. Examples Input 6 6 6 3 6 4 5 1 2 5 1 4 5 4 Output FHTAGN! Input 6 5 5 6 4 6 3 1 5 1 1 2 Output NO Note Let us denote as a simple cycle a set of v vertices that can be numbered so that the edges will only exist between vertices number 1 and 2, 2 and 3, ..., v - 1 and v, v and 1. A tree is a connected undirected graph consisting of n vertices and n - 1 edges (n > 0). A rooted tree is a tree where one vertex is selected to be the root.
2
8
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Arrays; import java.util.LinkedList; import java.util.Queue; import java.util.StringTokenizer; public class graph { static ArrayList<Integer>[] adjList; static boolean[] vis; static boolean[] vis2; static int[] parent; static int[] counter; static int[] edgelist; final static int unVisited=0; final static int Visited=2; final static int explored=1; static int[] level; static int dfs1(int v) { int c = 0; edgelist[v]=explored; for (int u : adjList[v]) { if (edgelist[u]==Visited ) { c++; } if (edgelist[u]==unVisited) { c += dfs1(u); } } edgelist[v]=Visited; return c; } static void reach(int v) { int c = 1; int t = v; while (adjList[v].get(0) != t) { c++; v = adjList[v].get(0); } v = t; while (adjList[v].get(0) != t) { counter[v] = c; v = adjList[v].get(0); } } static void fill(boolean[] Arr) { for (int i = 0; i < Arr.length; i++) { Arr[i] = false; } } static int count(boolean[] Arr) { int c = 0; for (int i = 0; i < Arr.length; i++) { if (!Arr[i]) { c++; } } return c; } static int dfs(int u) { vis[u] = true; vis2[u] = true; for (int v : adjList[u]) { if (counter[v] != 0) { counter[u] = counter[v] + 1; return counter[v] + 1; } else if (vis[v]) { reach(v); } if (!vis[v]) { int x = dfs(v) + 1; // counter[v] = x; return x; } } return 0; } static void bfs(int s) { Queue<Integer> q = new LinkedList<>(); q.add(s); vis[s] = true; level[s] = 0; while (!q.isEmpty()) { int u = q.poll(); for (int v : adjList[u]) if (!vis[v]) { vis[v] = true; level[v] = level[u] + 1; q.add(v); } } } public static void main(String[] args) throws IOException, InterruptedException { PrintWriter pw = new PrintWriter(System.out); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); // int n = Integer.parseInt(br.readLine()); StringTokenizer st = new StringTokenizer(br.readLine()); ; int V = Integer.parseInt(st.nextToken()); int E = Integer.parseInt(st.nextToken()); adjList = new ArrayList[V]; edgelist = new int[V]; level = new int[V]; for (int i = 0; i < V; i++) adjList[i] = new ArrayList<>(); for (int i = 0; i < E; i++) { st = new StringTokenizer(br.readLine()); int u = Integer.parseInt(st.nextToken()); int v = Integer.parseInt(st.nextToken()); adjList[u - 1].add(v - 1); adjList[v - 1].add(u - 1); } vis=new boolean[V]; bfs(0); System.out.println(E==V&&count(vis)==0 ? "FHTAGN!" : "NO"); } }
JAVA
103_B. Cthulhu
...Once upon a time a man came to the sea. The sea was stormy and dark. The man started to call for the little mermaid to appear but alas, he only woke up Cthulhu... Whereas on the other end of the world Pentagon is actively collecting information trying to predict the monster's behavior and preparing the secret super weapon. Due to high seismic activity and poor weather conditions the satellites haven't yet been able to make clear shots of the monster. The analysis of the first shot resulted in an undirected graph with n vertices and m edges. Now the world's best minds are about to determine whether this graph can be regarded as Cthulhu or not. To add simplicity, let's suppose that Cthulhu looks from the space like some spherical body with tentacles attached to it. Formally, we shall regard as Cthulhu such an undirected graph that can be represented as a set of three or more rooted trees, whose roots are connected by a simple cycle. It is guaranteed that the graph contains no multiple edges and self-loops. <image> Input The first line contains two integers β€” the number of vertices n and the number of edges m of the graph (1 ≀ n ≀ 100, 0 ≀ m ≀ <image>). Each of the following m lines contains a pair of integers x and y, that show that an edge exists between vertices x and y (1 ≀ x, y ≀ n, x β‰  y). For each pair of vertices there will be at most one edge between them, no edge connects a vertex to itself. Output Print "NO", if the graph is not Cthulhu and "FHTAGN!" if it is. Examples Input 6 6 6 3 6 4 5 1 2 5 1 4 5 4 Output FHTAGN! Input 6 5 5 6 4 6 3 1 5 1 1 2 Output NO Note Let us denote as a simple cycle a set of v vertices that can be numbered so that the edges will only exist between vertices number 1 and 2, 2 and 3, ..., v - 1 and v, v and 1. A tree is a connected undirected graph consisting of n vertices and n - 1 edges (n > 0). A rooted tree is a tree where one vertex is selected to be the root.
2
8
def findset(n): global parent if parent[n] != n: parent[n] = findset(parent[n]) return parent[n] def union(u, v): global parent a = findset(u) b = findset(v) if a == b: return 1 parent[a] = b return 0 count = 0 n, m = map(int,input().split()) x = [] y = [] parent = list(range(n+1)) for _ in range(m): a, b = map(int, input().split()) x.append(a) y.append(b) for i in range(m): count += union(x[i],y[i]) for i in range(1,n+1): findset(i) parent.pop(0) if len(set(parent)) == 1: if count == 1: print("FHTAGN!") quit() print("NO")
PYTHON3
103_B. Cthulhu
...Once upon a time a man came to the sea. The sea was stormy and dark. The man started to call for the little mermaid to appear but alas, he only woke up Cthulhu... Whereas on the other end of the world Pentagon is actively collecting information trying to predict the monster's behavior and preparing the secret super weapon. Due to high seismic activity and poor weather conditions the satellites haven't yet been able to make clear shots of the monster. The analysis of the first shot resulted in an undirected graph with n vertices and m edges. Now the world's best minds are about to determine whether this graph can be regarded as Cthulhu or not. To add simplicity, let's suppose that Cthulhu looks from the space like some spherical body with tentacles attached to it. Formally, we shall regard as Cthulhu such an undirected graph that can be represented as a set of three or more rooted trees, whose roots are connected by a simple cycle. It is guaranteed that the graph contains no multiple edges and self-loops. <image> Input The first line contains two integers β€” the number of vertices n and the number of edges m of the graph (1 ≀ n ≀ 100, 0 ≀ m ≀ <image>). Each of the following m lines contains a pair of integers x and y, that show that an edge exists between vertices x and y (1 ≀ x, y ≀ n, x β‰  y). For each pair of vertices there will be at most one edge between them, no edge connects a vertex to itself. Output Print "NO", if the graph is not Cthulhu and "FHTAGN!" if it is. Examples Input 6 6 6 3 6 4 5 1 2 5 1 4 5 4 Output FHTAGN! Input 6 5 5 6 4 6 3 1 5 1 1 2 Output NO Note Let us denote as a simple cycle a set of v vertices that can be numbered so that the edges will only exist between vertices number 1 and 2, 2 and 3, ..., v - 1 and v, v and 1. A tree is a connected undirected graph consisting of n vertices and n - 1 edges (n > 0). A rooted tree is a tree where one vertex is selected to be the root.
2
8
import java.util.LinkedList; import java.util.Scanner; public class Cthulhu { LinkedList <Integer> [] list ; boolean [] visited ; int [] parent ; boolean ans ; boolean first ; public Cthulhu (){ Scanner stream = new Scanner (System.in); int v = stream.nextInt() ; int e = stream.nextInt() ; list = new LinkedList [v+5]; visited = new boolean [v+5] ; parent = new int [v+5]; for (int i = 0 ; i <=v ; i++){ list[i] = new LinkedList <Integer> (); } for (int i = 0 ; i < e ; i++){ int first = stream.nextInt() ; int second = stream.nextInt() ; list[first].add(second); list[second].add(first); } boolean flag = false ; for (int i = 1 ; i <= v ; i++){ if (!visited[i]){ if (!flag){ ans = false ; first = false ; flag = true ; parent [i] = 0 ; dfs (i); }else { ans = false ; } } } if (ans){ System.out.println("FHTAGN!"); }else { System.out.println("NO"); } } public void dfs (int i ){ visited[i] = true ; for (int j = 0; j < list[i].size() ; j++){ int search = list[i].get(j); if (!visited[search]){ parent [search] = i ; dfs(search); }else { if ((search != parent [i])&&(searchParent(search, parent[i]))){ if (ans){ ans = false ; }else if (!first) { ans = true ; } } } } } public boolean searchParent (int target , int p){ boolean answer = false ; while (parent[p] != 0){ p = parent [p]; if (p == target) { answer = true ; break ; } } return answer ; } public static void main(String[] args) { // TODO Auto-generated method stub new Cthulhu(); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
//make sure to make new file! import java.io.*; import java.util.*; public class C520{ public static long MOD = 1000000007L; public static void main(String[] args)throws IOException{ BufferedReader f = new BufferedReader(new InputStreamReader(System.in)); PrintWriter out = new PrintWriter(System.out); long[] pow2 = new long[100005]; pow2[0] = 1L; for(int k = 1; k < 100005; k++){ pow2[k] = (2L*pow2[k-1] + MOD)%MOD; } StringTokenizer st = new StringTokenizer(f.readLine()); int n = Integer.parseInt(st.nextToken()); int m = Integer.parseInt(st.nextToken()); char[] sarray = f.readLine().toCharArray(); int[] array = new int[n]; for(int k = 0; k < n; k++){ if(sarray[k] == '1') array[k] = 1; else array[k] = 0; } int[] psum = new int[n+1]; psum[0] = 0; for(int k = 1; k <= n; k++){ psum[k] = psum[k-1] + array[k-1]; } for(int k = 0; k < m; k++){ st = new StringTokenizer(f.readLine()); int l = Integer.parseInt(st.nextToken()); int r = Integer.parseInt(st.nextToken()); int b = psum[r] - psum[l-1]; int a = r-l+1-b; long answer = ((pow2[b]-1)*pow2[a] + MOD)%MOD; out.println(answer); } out.close(); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import sys MOD = 10 ** 9 + 7 r = sys.stdin.readlines() n, q = r[0].split(' ') n = int(n) q = int(q) s = r[1] c = [0] * (n + 1) for i in range(n): c[i + 1] = c[i] + (s[i] == '1') p2 = [1] * (2 * n + 1) for i in range(1, 2 * n + 1): p2[i] = p2[i - 1] * 2 % MOD out = [] for qq in range(q): a, b = r[qq + 2].split(' ') a = int(a) b = int(b) o = c[b] - c[a - 1] z = (b - a + 1) - o ans = (p2[o + z] - p2[z]) % MOD out.append(str(ans)) sys.stdout.write("\n".join(out))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.lang.reflect.Array; import java.math.BigDecimal; import java.math.BigInteger; import java.math.RoundingMode; import java.text.DecimalFormat; import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Main { static long mod=(long)(1e+9 + 7); //static long mod=(long)998244353; static int[] sieve; static ArrayList<Integer> primes; static PrintWriter out; static fast s; static StringBuilder fans; public static void solve() { int n=s.nextInt(); int q=s.nextInt(); String str=s.nextLine(); int a[]=new int[n]; for(int i=0;i<n;i++) a[i]=str.charAt(i)-'0'; int ones[]=new int[n]; if(a[0]==1) ones[0]=1; for(int i=1;i<n;i++) if(a[i]==0) ones[i]=ones[i-1]; else ones[i]=ones[i-1]+1; for(int i=0;i<q;i++) { int l=s.nextInt()-1; int r=s.nextInt()-1; long cur_o=(long)ones[r]-((l>0)?ones[l-1]:0); long cur_z=((long)(r-l+1))-cur_o; long ans1=(s.pow((long)2, cur_o, mod)-1+mod)%mod; long ans2=(ans1*(s.pow((long)2, cur_z, mod)-1+mod)%mod)%mod; fans.append(((ans1+ans2)%mod)+"\n"); } } public static void main(String[] args) throws java.lang.Exception { s = new fast(); out=new PrintWriter(System.out); fans=new StringBuilder(""); int t=1; while(t>0) { solve(); t--; } out.println(fans); out.close(); } static class fast { private InputStream i; private byte[] buf = new byte[1024]; private int curChar; private int numChars; //Return floor log2n public static long log2(long bits) // returns 0 for bits=0 { int log = 0; if( ( bits & 0xffff0000 ) != 0 ) { bits >>>= 16; log = 16; } if( bits >= 256 ) { bits >>>= 8; log += 8; } if( bits >= 16 ) { bits >>>= 4; log += 4; } if( bits >= 4 ) { bits >>>= 2; log += 2; } return log + ( bits >>> 1 ); } public static boolean next_permutation(int a[]) { int i=0,j=0;int index=-1; int n=a.length; for(i=0;i<n-1;i++) if(a[i]<a[i+1]) index=i; if(index==-1) return false; i=index; for(j=i+1;j<n && a[i]<a[j];j++); int temp=a[i]; a[i]=a[j-1]; a[j-1]=temp; for(int p=i+1,q=n-1;p<q;p++,q--) { temp=a[p]; a[p]=a[q]; a[q]=temp; } return true; } public static void division(char ch[],int divisor) { int div=Character.getNumericValue(ch[0]); int mul=10;int remainder=0; StringBuilder quotient=new StringBuilder(""); for(int i=1;i<ch.length;i++) { div=div*mul+Character.getNumericValue(ch[i]); if(div<divisor) {quotient.append("0");continue;} quotient.append(div/divisor); div=div%divisor;mul=10; } remainder=div; while(quotient.charAt(0)=='0')quotient.deleteCharAt(0); System.out.println(quotient+" "+remainder); } public static void sieve(int size) { sieve=new int[size+1]; primes=new ArrayList<Integer>(); sieve[1]=1; for(int i=2;i*i<=size;i++) { if(sieve[i]==0) { for(int j=i*i;j<size;j+=i) {sieve[j]=1;} } } for(int i=2;i<=size;i++) { if(sieve[i]==0) primes.add(i); } } public static long pow(long n, long b, long MOD) { long x=1;long y=n; while(b > 0) { if(b%2 == 1) { x=x*y; if(x>MOD) x=x%(MOD); } y = y*y; if(y>MOD) y=y%(MOD); b >>= 1; } return x; } public static long mod_inv(long n,long mod) { return pow(n,mod-2,mod); } //Returns index of highest number less than or equal to key public static int upper(long[] a,int length,long key) { int low = 0; int high = length-1; int ans=-1; while (low <= high) { int mid = (low + high) / 2; if (key >= a[mid]) { ans=mid; low = mid+1; } else if(a[mid]>key){ high = mid - 1; } } return ans; } //Returns index of least number greater than or equal to key public static int lower(long[] a,int length,long key) { int low = 0; int high = length-1; int ans=-1; while (low <= high) { int mid = (low + high) / 2; if (key<=a[mid]) { ans=mid; high = mid-1; } else{ low=mid+1; } } return ans; } public long gcd(long r,long ans) { if(r==0) return ans; return gcd(ans%r,r); } public fast() { this(System.in); } public fast(InputStream is) { i = is; } public int read() { if (numChars == -1) throw new InputMismatchException(); if (curChar >= numChars) { curChar = 0; try { numChars = i.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (numChars <= 0) return -1; } return buf[curChar++]; } public String nextLine() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isEndOfLine(c)); return res.toString(); } public String nextString() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } public long nextLong() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public int nextInt() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public boolean isSpaceChar(int c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public boolean isEndOfLine(int c) { return c == '\n' || c == '\r' || c == -1; } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> long long n, t, i, j, arr[1000004], a, b, store, arr1[1000004], ans, final[1000004], ans1; long long aa, mod = 1000000007, zero[1000004], one[1000004], zer, on, final1[1000004]; char name[1000004]; using namespace std; int main() { scanf("%lld %lld", &n, &t); scanf("%s", name); store = 0; ans = 0; for (i = 1; i <= 1000000; i++) { ans = (ans + store + 1) % mod; final[i] = ans; store = ans % mod; } aa = 2; final[0] = 0; final1[0] = 1; for (i = 1; i <= 1000000; i++) { if (i == 1) { final1[i] = 2; } else { final1[i] = ((final1[i - 1] % mod) * 2) % mod; } } for (i = 0; i < n; i++) { arr[i] = (int)name[i] - '0'; } for (i = 0; i < n; i++) { if (i == 0) { if (arr[0] == 0) { zero[0] = 1; one[0] = 0; } else { zero[0] = 0; one[0] = 1; } } else { if (arr[i] == 1) { zero[i] = zero[i - 1]; one[i] = one[i - 1] + 1; } else { zero[i] = zero[i - 1] + 1; one[i] = one[i - 1]; } } } while (t--) { ans = 0; j = 0; scanf("%lld %lld", &a, &b); if (a == 1) { zer = zero[b - 1]; on = one[b - 1]; } else { zer = zero[b - 1] - zero[a - 2]; on = one[b - 1] - one[a - 2]; } ans = final[on]; ans1 = final1[zer]; ans = ((ans1 % mod) * (ans % mod)) % mod; printf("%lld\n", ans); } }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int MAX = 1e5 + 5; const int BASE = 1e9 + 7; int n, q; bool a[MAX]; int f[MAX]; int num[MAX][2]; int Power(int x, int y) { if (y == 0) return 1; int tmp = Power(x, y / 2); if (y % 2) return (1LL * ((1LL * tmp * tmp) % BASE) * x) % BASE; return (1LL * tmp * tmp) % BASE; } void Preprocess() { f[0] = 1; for (int i = 1; i <= n; ++i) f[i] = (1LL * f[i - 1] + Power(2, i)) % BASE; for (int i = 1; i <= n; ++i) { num[i][0] = num[i - 1][0]; num[i][1] = num[i - 1][1]; if (a[i]) ++num[i][1]; else ++num[i][0]; } } int Calc(int l, int r) { int x = num[r][0] - num[l - 1][0]; int y = num[r][1] - num[l - 1][1]; int M = f[y - 1]; return (1LL * M * (1 + f[x - 1])) % BASE; } int main() { cin >> n >> q; string s; cin >> s; for (int i = 0; i < s.size(); ++i) if (s[i] == '0') a[i + 1] = 0; else a[i + 1] = 1; Preprocess(); for (int i = 1; i <= q; ++i) { int l, r; cin >> l >> r; cout << Calc(l, r) << endl; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const long long INF = 1e18 + 322; const long long maxn = 1e5 + 228; const long long MOD = 1e9 + 7; long long n, q, pr[maxn]; long long bin_pow(long long a, long long n) { if (n == 0) return 1; if (n & 1) { return (bin_pow(a, n - 1) * a) % MOD; } else { long long b = bin_pow(a, n / 2); return (b * b) % MOD; } } void solve() { string s; cin >> n >> q; cin >> s; for (int i = 1; i <= n; ++i) { pr[i] = pr[i - 1] + (s[i - 1] == '1'); } while (q--) { long long l, r, tmp = 1, kol1 = 0, kol0 = 0, ans = 0, mul; cin >> l >> r; kol1 = pr[r] - pr[l - 1]; kol0 = r - l + 1 - kol1; if (kol1) { tmp = bin_pow(2, kol1); ans = (tmp - 1 + MOD) % MOD; } if (kol0) { tmp = (tmp - 1 + MOD) % MOD; long long tmp1 = bin_pow(2, kol0); ans = (ans + ((tmp * (tmp1 - 1 + MOD)) % MOD)) % MOD; } cout << ans << '\n'; } } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); srand(time(0)); solve(); return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.util.*; import java.io.*; import java.text.*; import java.math.*; import static java.lang.Integer.*; import static java.lang.Double.*; import java.lang.Math.*; public class banh_mi { public static void main(String[] args) throws Exception { new banh_mi().run(); } public void run() throws Exception { FastIO file = new FastIO(); int n = file.nextInt(); int q = file.nextInt(); long mod = 1000000007l; long[] a = new long[n]; long[] b = new long[n]; char[] c = file.next().toCharArray(); for (int i = 0; i < n; i++) a[i] = c[i] == '0' ? 0 : 1; for (int i = 0; i < n; i++) b[i] = c[i] == '0' ? 1 : 0; for (int i = 1; i < n; i++) { a[i] += a[i-1]; a[i] %= mod; b[i] += b[i-1]; b[i] %= mod; } while (q-->0) { int l = file.nextInt() - 1; int r = file.nextInt() - 1; long t = a[r] - (l > 0 ? a[l - 1] : 0); long tt = b[r] - (l > 0 ? b[l - 1] : 0); System.out.println((pow(2, t, mod) - 1) % mod * pow(2, tt, mod) % mod); } } public static class FastIO { BufferedReader br; StringTokenizer st; public FastIO() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine() { String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } public static long pow(long n, long p, long mod) { if (p == 0) return 1; if (p == 1) return n % mod; if (p % 2 == 0) { long temp = pow(n, p / 2, mod); return (temp * temp) % mod; } else { long temp = pow(n, (p - 1) / 2, mod); temp = (temp * temp) % mod; return (temp * n) % mod; } } public static long pow(long n, long p) { if (p == 0) return 1; if (p == 1) return n; if (p % 2 == 0) { long temp = pow(n, p / 2); return (temp * temp); } else { long temp = pow(n, (p - 1) / 2); temp = (temp * temp); return (temp * n); } } public static long gcd(long x, long y) { if (x == 0) return y; else return gcd(y % x, x); } public static boolean isPrime(int n) { if (n <= 1) return false; if (n <= 3) return true; if (n % 2 == 0 || n % 3 == 0) return false; for (int i = 5; i * i <= n; i = i + 6) if (n % i == 0 || n % (i + 2) == 0) return false; return true; } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int MOD = 1e9 + 7; const int MAXN = 100005; long long q, n, l, r, ans; char c; long long sum[MAXN], sumPow[MAXN]; void init() { sumPow[0] = 1; long long temp = 1; for (int i = 1; i <= MAXN; i++) { temp = temp * 2 % MOD; sumPow[i] = (sumPow[i - 1] % MOD + temp % MOD) % MOD; } } int main() { ios::sync_with_stdio(false); init(); cin >> n >> q; sum[0] = 0; for (int i = 1; i <= n; i++) { cin >> c; sum[i] = sum[i - 1] + (c == '0' ? 1 : 0); } for (int i = 0; i < q; i++) { cin >> l >> r; int x = sum[r] - sum[l - 1]; int size = r - l + 1; ans = (sumPow[size - 1] - (x == 0 ? 0 : sumPow[x - 1]) + MOD) % MOD; printf("%d\n", ans); } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; long long calc_power(long long x) { if (x == 0) { return 1L; } long long t = calc_power(x / 2L); if (x % 2) { return ((t * t) * 2L) % 1000000007L; } return ((t * t)) % 1000000007L; } int main() { long long n, q; cin >> n >> q; vector<long long> arr(n + 1, 0); string s; cin >> s; arr[0] = 0; for (long long i = 1; i <= n; i++) { arr[i] = arr[i - 1] + (s[i - 1] - '0'); } for (long long i = 0; i < q; i++) { long long l, r; cin >> l >> r; long long ones = arr[r] - arr[l - 1]; long long zeros = r - l + 1 - ones; long long x = 1; x = calc_power(ones); x -= 1; x *= calc_power(zeros); x %= 1000000007L; cout << x << endl; } }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; vector<long long int> two(100000 + 2, 1); long long int mod = 1000000000 + 7; void p() { long long int i; for (i = 1; i <= 100000; i++) { two[i] = (2 * two[i - 1]) % mod; } for (i = 1; i <= 100000; i++) { two[i] = (two[i] + two[i - 1]) % mod; } } void solve() { long long int n, q, i, x, y; cin >> n >> q; vector<long long int> dp(n + 1, 0); string s; cin >> s; for (i = 1; i <= n; i++) dp[i] = dp[i - 1] + s[i - 1] - '0'; while (q--) { cin >> x >> y; long long int one = dp[y] - dp[x - 1]; long long int zero = y - x + 1 - one; long long int ans = 0; if (one != 0) ans = two[one - 1]; if (one != 0 && zero != 0) ans = (ans + (two[one - 1] * two[zero - 1]) % mod) % mod; cout << ans << "\n"; } } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); p(); solve(); return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
n,q = map(int,input().split()) a = input() sums = [] degrees = [1,2] res = [] d = 2 if (a[0] == "1"): s = 1 else: s = 0 sums.append(s) for i in range(1,n): if (a[i] == "1"): s += 1 d = (d*2)%1000000007 sums.append(s) degrees.append(d) for i in range(0,q): l,r = map(int,input().split()) k0 = (r - sums[r-1]) - (l - sums[l-1]) k1 = sums[r-1] - sums[l-1] if (a[l-1] == "0"): k0 += 1 else: k1 += 1 R = (degrees[k0]*(degrees[k1]-1))%1000000007 res.append(R) for i in range(0,q): print(res[i])
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int maxN = 1e6 + 5, MOD = 1e9 + 7, eps = 1e-7, INF = 1e9; const double PI = acos(-1); int n, q, a, b; string str; int acum[maxN]; long long mulmod(long long a, long long b) { long long ret = 0; while (b) { if (b & 1) ret = (ret + a) % MOD; b >>= 1, a = (a << 1) % MOD; } return ret; } long long fastPow(long long x, long long n) { long long ret = 1; while (n) { if (n & 1) ret = ret * x % MOD; n >>= 1, x = mulmod(x, x); } return ret; } int main() { ios_base::sync_with_stdio(false), cin.tie(NULL); cin >> n >> q >> str; acum[0] = 0; for (int i = int(0); i < int(n); i++) { char c = str[i]; if (c == '0') { acum[i + 1] = acum[i]; } else { acum[i + 1] = acum[i] + 1; } } for (int i = int(0); i < int(q); i++) { cin >> a >> b; long long tot = b - a + 1, ceros = tot - (acum[b] - acum[a - 1]); long long ans = (fastPow(2, tot) + MOD - 1) % MOD; ans -= (fastPow(2, ceros) + MOD - 1) % MOD; ans += MOD; ans %= MOD; cout << ans << '\n'; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> #pragma comment(linker, "/STACK:102400000,102400000") using namespace std; const int maxn = 1e5 + 5; int a[maxn]; int val[maxn]; long long poww[maxn]; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, q; cin >> n >> q; string t; cin >> t; poww[0] = 1; for (int i = 1; i < maxn; ++i) { poww[i] = poww[i - 1] * 2 % 1000000007; } for (int i = 0; i < t.size(); ++i) { a[i + 1] = t[i] - '0'; } for (int i = 1; i <= n; ++i) { val[i] = val[i - 1] + a[i]; } int l, r; for (int i = 1; i <= q; ++i) { cin >> l >> r; int cnt1 = val[r] - val[l - 1]; int cnt0 = r - l + 1 - cnt1; long long ans = 0; ans += (poww[cnt1] - 1 + 1000000007) % 1000000007; if (cnt0) { long long tans; tans = ((poww[cnt0 - 1] * ans * 2) % 1000000007 - ans + 1000000007) % 1000000007; ans += tans; ans %= 1000000007; } cout << ans << endl; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
n, q = map(int, raw_input().split()) l = raw_input() cnt1, cnt0 = [0]*(n+1), [0]*(n+1) mod = 10**9 + 7 for i in range(len(l)): if l[i] == '1': cnt1[i+1] = cnt1[i] + 1 cnt0[i+1] = cnt0[i] else: cnt0[i+1] = cnt0[i] + 1 cnt1[i+1] = cnt1[i] pow2 = [1] for i in range(1, 10**5 + 10): pow2.append((2*pow2[-1])%mod) for i in range(q): l, r = map(int, raw_input().split()) ones = cnt1[r] - cnt1[l-1] zeroes = cnt0[r] - cnt0[l-1] t1 = (pow2[ones] - 1)%mod t2 = (((pow2[ones] - 1)%mod)*(pow2[zeroes] - 1))%mod print((t1+t2)%mod)
PYTHON
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #pragma GCC target("sse2") using namespace std; long long fastexpom(long long a, long long b, long long m) { long long res = 1; while (b > 0) { if (b % 2 == 1) res = (((res) % m) * ((a) % m)) % m; a = (((a) % m) * ((a) % m)) % m; b /= 2; } return res; } int32_t main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); ; long long n, m; cin >> n >> m; string s; cin >> s; vector<long long> v(n + 1); vector<long long> cnt0(n + 1, 0); vector<long long> cnt1(n + 1, 0); for (long long i = 0; i < n; i++) { v[i + 1] = s[i] - '0'; if (v[i + 1]) { cnt1[i + 1] = cnt1[i] + 1; cnt0[i + 1] = cnt0[i]; } else { cnt0[i + 1] = cnt0[i] + 1; cnt1[i + 1] = cnt1[i]; } } while (m--) { long long l, r; cin >> l >> r; long long one = cnt1[r] - cnt1[l - 1]; long long zero = cnt0[r] - cnt0[l - 1]; if (one == 0) { cout << "0" << "\n"; continue; } long long half = (fastexpom(2, one, 1000000007) - 1 + 1000000007) % 1000000007; long long start = half; long long ans = half; if (zero != 0) { half = (fastexpom(2, zero, 1000000007) - 1 + 1000000007) % 1000000007; half = half * start; half = half % 1000000007; ans = (ans + half) % 1000000007; } cout << ans << "\n"; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
def beki(a,b): waru=10**9+7 ans=1 while(b>0): if(1 & b): ans= ans * a %waru b >>= 1 a=a * a % waru return ans n,m=map(int,input().split()) s=input() ans=[] waru=10**9+7 ruiseki=[0]*(n+1) bekij=[1]*(n+1) for i in range(n): ruiseki[i+1]=ruiseki[i]+int(s[i]) bekij[i+1]=(bekij[i]*2)%waru for i in range(m): l,r=map(int,input().split()) ko=ruiseki[r]-ruiseki[l-1] ans.append((((bekij[ko] -1)) * ((bekij[r+1-l - ko]))) %waru) print("\n".join(list(map(str,ans))))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
n, q = map(int, raw_input().split()) inp = raw_input() arr = [] for i in inp: arr.append(int(i)) mod = 10**9 + 7 twos = [1] for i in range(1, 10**5 + 1): twos.append((twos[-1] * 2)%mod) ones = [0] * (n+1) danger = False for i in range(n): if arr[i] == 1: ones[i+1] = ones[i] + 1 else: ones[i+1] = ones[i] if ones[-1] == 0: danger = True for i in range(q): l,r = map(int, raw_input().split()) if danger: print 0 continue length = r - l + 1 one = ones[r] - ones[l-1] zero = length - one oneCon = twos[one] - 1 zeroCon = twos[zero] ans = (oneCon * zeroCon) %mod print ans
PYTHON
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const long long mod = 1e9 + 7; const long long N = 100100; char a[N]; long long sum[N]; long long qm(long long a, long long b) { long long ans = 1; while (b) { if (b % 2) { ans = (ans * a) % mod; } a = (a * a) % mod; b /= 2; } return ans % mod; } int main() { long long n, q, l, r; cin >> n >> q; cin >> (a + 1); long long len = strlen(a + 1); sum[0] = 0; for (long long i = 1; i <= len; i++) { if (a[i] == '1') { sum[i] = sum[i - 1] + 1; } else { sum[i] = sum[i - 1]; } } long long one, rel, zero; long long ans; while (q--) { cin >> l >> r; l--; ans = 0; one = r - l; rel = sum[r] - sum[l]; zero = one - rel; ans += (qm((long long)2, rel) - 1) % mod; if (zero > 0) { ans = (ans % mod + ans % mod * (qm((long long)2, zero) - 1) % mod) % mod; } cout << ans << endl; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.StringTokenizer; import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.InputStream; import java.util.Arrays; import java.util.ArrayList; import java.math.*; /** * Built using CHelper plug-in * Actual solution is at the top */ public class TestClass { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; InputReader in = new InputReader(inputStream); PrintWriter out = new PrintWriter(outputStream); TaskA solver = new TaskA(); int testCount = 1; // testCount = Integer.parseInt(in.next()); for (int i = 1; i <= testCount; i++) solver.solve(i, in, out); out.close(); } static class TaskA { private final long MOD = (long)1e9+7; public void solve(int testNumber, InputReader in, PrintWriter out) { long[] pows = new long[100001]; pows[0] = 1; for (int i = 1; i <= 100000; i++) { pows[i] = (pows[i - 1] << 1) % MOD; } int n = in.nextInt(); int q = in.nextInt(); String s = in.next(); int[] pre = new int[n+1]; pre[0] = 0; int cnt = 0; for(int i=0;i<n;i++) { if(s.charAt(i)=='1') cnt++; pre[i] = cnt; } for(int i=0;i<q;i++) { int l = in.nextInt()-1; int r = in.nextInt()-1; int ones = pre[r]; if (l > 0) { ones -= pre[l - 1]; } int zeroes = (r - l + 1) - ones; long ans = (pows[ones]-1)*(pows[zeroes]) ; ans%=MOD; out.println(ans); } } /* private long pow(long x, int n) { if (n == 0) { return 1; } long x2 = x * x % MOD; return pow(x2, n/2) * (n % 2 == 0 ? 1 : x) % MOD; } */ } static class InputReader { public BufferedReader reader; public StringTokenizer tokenizer; public InputReader(InputStream stream) { reader = new BufferedReader(new InputStreamReader(stream), 32768); tokenizer = null; } public String next() { while (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> char s[233333]; int n, q, pre[233333]; int pow(int a, int k) { int ans = 1; while (k) { if (k & 1) ans = 1ll * ans * a % 1000000007; k >>= 1; a = 1ll * a * a % 1000000007; } return ans; } int main() { scanf("%d%d", &n, &q); scanf("%s", s + 1); for (int i = 1; i <= n; i++) pre[i] = pre[i - 1] + s[i] - '0'; int l, r; while (q--) { scanf("%d%d", &l, &r); printf("%lld\n", 1ll * (pow(2, pre[r] - pre[l - 1]) - 1) * pow(2, r - l + 1 - pre[r] + pre[l - 1]) % 1000000007); } }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.util.Arrays; import java.util.InputMismatchException; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.TreeSet; public class PROG4{ private static InputReader sc; private static PrintWriter pw; private static TreeSet<Integer> primeSet; private static long gcd(long a, long b){ return (b == 0)?a:gcd(b, a%b); } private static long lcm(long a, long b){ return (a/gcd(a, b))*b; } private static void genPrime(int lim){ boolean isPrime[] = new boolean[lim+1]; Arrays.fill(isPrime, true); for(int i=2; i<=lim; i++){ if(isPrime[i]){ primeSet.add(i); for(long j=(long)i*i; j<=lim; j+=i) isPrime[(int)j] = false; } } } static class InputReader { private final InputStream stream; private final byte[] buf = new byte[8192]; private int curChar, snumChars; private SpaceCharFilter filter; InputReader(InputStream stream) { this.stream = stream; } int snext() { if (snumChars == -1) throw new InputMismatchException(); if (curChar >= snumChars) { curChar = 0; try { snumChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (snumChars <= 0) return -1; } return buf[curChar++]; } int nextInt() { int c = snext(); while (isSpaceChar(c)) { c = snext(); } int sgn = 1; if (c == '-') { sgn = -1; c = snext(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = snext(); } while (!isSpaceChar(c)); return res * sgn; } long nextLong() { int c = snext(); while (isSpaceChar(c)) { c = snext(); } int sgn = 1; if (c == '-') { sgn = -1; c = snext(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = snext(); } while (!isSpaceChar(c)); return res * sgn; } String readString() { int c = snext(); while (isSpaceChar(c)) { c = snext(); } StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = snext(); } while (!isSpaceChar(c)); return res.toString(); } String nextLine() { int c = snext(); while (isSpaceChar(c)) c = snext(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = snext(); } while (!isEndOfLine(c)); return res.toString(); } boolean isSpaceChar(int c) { if (filter != null) return filter.isSpaceChar(c); return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } private boolean isEndOfLine(int c) { return c == '\n' || c == '\r' || c == -1; } public interface SpaceCharFilter { boolean isSpaceChar(int ch); } } public static void main(String args[]) { sc = new InputReader(System.in); pw = new PrintWriter(System.out); primeSet = new TreeSet<>(); solve(); pw.flush(); pw.close(); } private static long count[][], mod; private static long count0(int node){ if(node < 0) return 0; return count[0][node]; } private static long count1(int node){ if(node < 0) return 0; return count[1][node]; } private static long ans(long count0, long count1){ return ( exp(count0)%mod * ((exp(count1)%mod) -1 + mod)%mod)%mod; } private static long exp(long count){ long ans = 1; if(count == 0) return ans; long p = exp(count/2); ans = (p%mod * p%mod)%mod; if(count % 2 != 0) ans = (ans%mod * 2)%mod; return ans; } private static void solve(){ int n = sc.nextInt(), q = sc.nextInt(); count = new long[2][n]; mod = 1000000007; String s = sc.readString(); for(int i=0; i<n; i++) { if(i>0){ count[0][i] = count[0][i-1]; count[1][i] = count[1][i-1]; } count[s.charAt(i) - '0'][i]++; }/* for(int i=0; i<n; i++) pw.println(count[0][i]+" "+count[1][i]);*/ while(q-->0){ int l = sc.nextInt()-1, r = sc.nextInt()-1; pw.println(ans(count0(r)-count0(l-1), count1(r)-count1(l-1))); } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.lang.reflect.Array; import java.math.*; import java.security.*; import java.text.*; import java.util.*; import java.util.concurrent.*; import java.util.regex.*; public class Solution { private static final Scanner sc = new Scanner(System.in); public static void main(String[] args) throws IOException { BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int n = Integer.parseInt(st.nextToken()); int q = Integer.parseInt(st.nextToken()); String s = br.readLine(); long mod = 1000000007; long [] p2s = new long[100002]; p2s[0]=1; for (int i=1; i<p2s.length; ++i){ p2s[i]=p2s[i-1]*2; p2s[i]%=mod; } int[] arr = new int[n]; int[] acc = new int[n+1]; for (int i=0; i<n; ++i){ arr[i] = s.charAt(i)-'0'; acc[i+1] = acc[i] + arr[i]; } for (int qq=0; qq<q; ++qq){ st = new StringTokenizer(br.readLine()); int l = Integer.parseInt(st.nextToken()); int r = Integer.parseInt(st.nextToken()); int d = r-l+1; int c = acc[r]-acc[l-1]; if (c == 0){ bw.write(""+0); bw.newLine(); } else { long cc = ((p2s[c]+mod)-1)%mod; long cc2 = ((p2s[d-c]+mod)-1)%mod; cc2*= cc; cc2%=mod; cc+=cc2; cc%=mod; bw.write(""+cc); bw.newLine(); } } sc.close(); br.close(); bw.close(); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; char buf[100000], *p1, *p2; int rd() { int x = 0; char s = (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 100000, stdin), p1 == p2) ? EOF : *p1++); while (s < '0' || s > '9') s = (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 100000, stdin), p1 == p2) ? EOF : *p1++); while (s >= '0' && s <= '9') x = (((x << 2) + x) << 1) + s - '0', s = (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 100000, stdin), p1 == p2) ? EOF : *p1++); return x; } namespace SA { int n, ws[1050], wa[1050], wb[1050], rk[1050], height[1050], sa[1050]; char w[1050]; void build(int m) { int i, j, p, *x = wa, *y = wb; for (i = 1; i <= m; i++) ws[i] = 0; for (i = 1; i <= n; i++) ws[x[i] = w[i]]++; for (i = 1; i <= m; i++) ws[i] += ws[i - 1]; for (i = n; i; i--) sa[ws[x[i]]--] = i; for (j = 1; j < n; j <<= 1) { for (p = 0, i = n; i > n - j; i--) y[++p] = i; for (i = 1; i <= n; i++) if (sa[i] > j) y[++p] = sa[i] - j; for (i = 1; i <= m; i++) ws[i] = 0; for (i = 1; i <= n; i++) ws[x[i]]++; for (i = 1; i <= m; i++) ws[i] += ws[i - 1]; for (i = n; i; i--) sa[ws[x[y[i]]]--] = y[i]; swap(x, y); m = 1; for (i = 1; i <= n; i++) x[sa[i]] = y[sa[i] + j] == y[sa[i + 1] + j] && y[sa[i]] == y[sa[i + 1]] ? m : m++; if (m > n) break; } for (i = 1; i <= n; i++) rk[sa[i]] = i; p = 0; for (i = 1; i <= n; i++) if (rk[i] != n) { j = rk[i] + 1; for (; w[i + p] == w[sa[j] + p]; p++) ; height[rk[i]] = p; if (p) p--; } } void init() { n = 6; w[1] = 'a'; w[2] = 'b'; w[3] = 'a'; w[4] = 'b'; w[5] = 'b'; w[6] = 'a'; build(128); } } // namespace SA namespace Scape_Goat_Tree { int ch[1050][2], val[1050], siz[1050], tot[1050], ex[1050], S[1050], V[1050], tp, koishi; int root, f[1050], cnt; double AL = 0.75; void pushup(int p) { siz[p] = siz[ch[p][0]] + siz[ch[p][0]] + ex[p]; tot[p] = tot[ch[p][0]] + tot[ch[p][0]] + 1; } int GG(int p) { return tot[p] * AL < max(tot[ch[p][0]], tot[ch[p][0]]); } int newnode(int v) { int p = ++cnt; siz[p] = tot[p] = ex[p] = 1; val[p] = v; return p; } void insert(int &p, int v, int fa) { if (!p) { p = newnode(v); f[p] = fa; return; } insert(ch[p][v > val[p]], v, p); pushup(p); if (GG(p)) koishi = p; } void init() { insert(root, 1, 0); insert(root, 2, 0); insert(root, 3, 0); insert(root, 4, 0); insert(root, 5, 0); } } // namespace Scape_Goat_Tree int a[100000], n; int m, b[100050]; long long p[100050]; int main() { Scape_Goat_Tree::init(); SA::init(); scanf("%d%d", &n, &m); int i; for (i = 1; i <= n; i++) scanf("%1d", &a[i]); for (i = 1; i <= n; i++) { if (a[i]) b[i] = b[i - 1] + 1; else b[i] = b[i - 1]; } p[0] = 1; for (i = 1; i <= n + 1; i++) { p[i] = p[i - 1] * 2 % 1000000007; } int x, y; long long ans; while (m--) { scanf("%d%d", &x, &y); int len = y - x + 1, sum = b[y] - b[x - 1]; if (!sum) { printf("0\n"); continue; } len -= sum; ans = (p[sum] - 1 + (p[sum] - 1) * (p[len] - 1)) % 1000000007; printf("%lld\n", (ans % 1000000007 + 1000000007) % 1000000007); } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
from sys import stdin,stdout n,q=map(int,input().split()) mod=1000000007 o=[] s=[] r=m=0 a=input() for i in a: if i=='0': r+=1 else: m+=1 o.append(r) s.append(m) z=[1] #print(o) for i in range(100000): z.append((z[-1]*2)%mod) for j in range(q): l,r=(int(j) for j in stdin.readline().split()) m=r-l+1 zs=o[r-1]-o[l-1]+(a[l-1]=='0') os=m-zs #print(zs,os) if zs!=0: print((((z[os]-1)%mod)*((z[zs])%mod))%mod) else: print(((z[os]-1)%mod))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; template <typename T, typename U> istream &operator>>(istream &in, pair<T, U> &data) { in >> data.first >> data.second; return in; } template <typename T> istream &operator>>(istream &in, vector<T> &vect) { for (unsigned i = 0; i < vect.size(); i++) { in >> vect[i]; } return in; } namespace std { template <> struct hash<std::pair<int, int>> { inline size_t operator()(const std::pair<int, int> &v) const { std::hash<int> int_hasher; return int_hasher(v.first) ^ int_hasher(v.second); } }; } // namespace std template <typename Out> void Split(const std::string &s, char delim, Out result) { std::stringstream ss(s); std::string item; while (std::getline(ss, item, delim)) { *(result++) = item; } } std::vector<std::string> str_split(const std::string &s, char delim) { std::vector<std::string> elems; Split(s, delim, std::back_inserter(elems)); return elems; } class MinSegmentTree { public: int _n; vector<int> _arr; MinSegmentTree(vector<int> &arr) : _n(arr.size()), _arr(2 * _n) { for (int i = 0; i < _n; i++) { _arr[i + _n] = arr[i]; } for (int i = _n - 1; i > 0; i--) { _arr[i] = min(_arr[i << 1], _arr[(i << 1) + 1]); } } int query(int l, int r) { if (r < l) swap(r, l); int currmin = _arr[_n + l]; for (l += _n, r += _n; l < r; l >>= 1, r >>= 1) { if (l & 1) currmin = min(currmin, _arr[l++]); if (r & 1) currmin = min(currmin, _arr[--r]); } return currmin; } }; int main() { ios_base::sync_with_stdio(false); long long n, q; cin >> n >> q; vector<bool> a(n); vector<long long> sa_kec(n + 2); vector<long long> cisto(n + 2); sa_kec[0] = 0; cisto[0] = 1; for (int i = 1; i < n + 2; i++) { sa_kec[i] = (sa_kec[i - 1] * 2 + 1) % 1000000007; cisto[i] = (cisto[i - 1] * 2) % 1000000007; } string inp; cin >> inp; for (int i = 0; i < n; i++) { a[i] = (inp[i] == '1'); } vector<long long> prefix_ones(n + 1); vector<long long> prefix_zeros(n + 1); prefix_ones[0] = prefix_zeros[0] = 0; for (int i = 0; i < n; i++) { prefix_ones[i + 1] = prefix_ones[i]; prefix_zeros[i + 1] = prefix_zeros[i]; if (a[i]) { prefix_ones[i + 1]++; } else { prefix_zeros[i + 1]++; } } for (int qi = 0; qi < q; qi++) { long long l, r; cin >> l >> r; l--; r--; long long num_ones = prefix_ones[r + 1] - prefix_ones[l]; long long num_zero = prefix_zeros[r + 1] - prefix_zeros[l]; long long sol = sa_kec[num_ones] * cisto[num_zero]; sol %= 1000000007; cout << sol << endl; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.io.Writer; import java.util.Arrays; import java.util.InputMismatchException; import java.util.*; import java.io.*; import java.math.*; public class Main{ static class Pair { int x; int y; // Constructor public Pair(int x, int y) { this.x = x; this.y = y; } } static class Compare { static void compare(Pair arr[], int n) { // Comparator to sort the pair according to second element Arrays.sort(arr, new Comparator<Pair>() { @Override public int compare(Pair p1, Pair p2) { return p2.y - p1.y; } }); } } public static long pow(long a, long b) { long result=1; while(b>0) { if (b % 2 != 0) { result=(result*a); b--; } a=(a*a); b /= 2; } return result; } public static BigInteger fact(long num) { BigInteger fact=new BigInteger("1"); int i=0; for(i=1; i<=num; i++) { BigInteger bg=BigInteger.valueOf(i); fact=fact.multiply(bg); } return fact; } public static long gcd(long a, long b) { if (a == 0) return b; return gcd(b%a, a); } public static long lcm(int a,int b) { return a * (b / gcd(a, b)); } public static long sum(int h) { return (h*(h+1)/2); } /* public static void dfs(int parent,boolean[] visited) { ArrayList<Integer> arr=new ArrayList<Integer>(); arr=graph.get(parent); visited[parent]=true; storing1[parent]=count++; for(int i=0;i<arr.size();i++) { int num=arr.get(i); if(visited[num]==false) { dfs(num,visited); } } storing2[parent]=count; } static int count=0; static int[] storing1; static int[] storing2; static ArrayList<ArrayList<Integer>> graph; */ public static void main(String args[])throws IOException { InputReader in=new InputReader(System.in); OutputWriter out=new OutputWriter(System.out); // long a=pow(26,1000000005); // BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); ArrayList<Integer> ar=new ArrayList<>(); ArrayList<Integer> ar1=new ArrayList<>(); TreeSet<Integer> ts=new TreeSet<>(); TreeSet<Integer> ts1=new TreeSet<>(); HashMap<Integer,Integer> hash=new HashMap<Integer,Integer>(); TreeMap<String, Integer> tree=new TreeMap<String ,Integer>(); int n=i(); int q=i(); String s=s(); char[] ch=s.toCharArray(); int[] a=new int[n]; for(int i=0;i<n;i++) { if(ch[i]=='1') { a[i]=1; } else { a[i]=0; } } int[] sum=new int[n]; for(int i=0;i<n;i++) { if(i==0) { if(a[i]==1) { sum[i]=1; } } else { sum[i]=sum[i-1]+a[i]; } } long[] ans=new long[n+2]; long[] pre=new long[n+2]; for(int i=1;i<=n+1;i++) { if(i==1) { ans[i]=1; pre[i]=ans[i]; } else { ans[i]=(ans[i-1]*2)%1000000007; pre[i]=pre[i-1]+ans[i]; } } while(q-->0) { int l=i()-1; int r=i()-1; int ans2=0; if(l==0) { if(r==0) { ans2=sum[0]; } else { ans2=sum[r]; } } else { ans2=sum[r]-sum[l-1]; } //pln(ans2+""); // pln(pre[(r-l+1)]+" HLO"); long ans4=((pre[(r-l+1)]-(pre[r-l+1-ans2])%1000000007)+1000000007)%1000000007; pln(ans4+""); //long ans4=ans[ans2]-; } } /**/ static InputReader in=new InputReader(System.in); static OutputWriter out=new OutputWriter(System.out); public static long l() { String s=in.String(); return Long.parseLong(s); } public static void pln(String value) { System.out.println(value); } public static int i() { return in.Int(); } public static String s() { return in.String(); } } class InputReader { private InputStream stream; private byte[] buf = new byte[1024]; private int curChar; private int numChars; private SpaceCharFilter filter; public InputReader(InputStream stream) { this.stream = stream; } public int read() { if (numChars== -1) throw new InputMismatchException(); if (curChar >= numChars) { curChar = 0; try { numChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (numChars <= 0) return -1; } return buf[curChar++]; } public int Int() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } int res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public String String() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } public boolean isSpaceChar(int c) { if (filter != null) return filter.isSpaceChar(c); return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public String next() { return String(); } public interface SpaceCharFilter { public boolean isSpaceChar(int ch); } } class OutputWriter { private final PrintWriter writer; public OutputWriter(OutputStream outputStream) { writer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(outputStream))); } public OutputWriter(Writer writer) { this.writer = new PrintWriter(writer); } public void print(Object...objects) { for (int i = 0; i < objects.length; i++) { if (i != 0) writer.print(' '); writer.print(objects[i]); } } public void printLine(Object...objects) { print(objects); writer.println(); } public void close() { writer.close(); } public void flush() { writer.flush(); } } class IOUtils { public static int[] readIntArray(InputReader in, int size) { int[] array = new int[size]; for (int i = 0; i < size; i++) array[i] = in.Int(); return array; } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.util.Scanner; public class c { static long oo = 1_000_000_007; static long add(long a, long b) { return (a+b)%oo; } static long negate(long a) { return (oo-a)%oo; } static long mult(long a, long b) { return (a*b)%oo; } static long pow(long a, long p) { if(p == 0) return 1; if(p == 1) return a; long rec = pow(a, p/2); rec = mult(rec, rec); if(p % 2 == 0) return rec; rec = mult(rec, a); return rec; } public static void main(String[] args) { Scanner in = new Scanner(System.in); int N = in.nextInt(); int Q = in.nextInt(); char[] str = in.next().toCharArray(); long[] prefsum0 = new long[N+1]; long[] prefsum1 = new long[N+1]; for(int n=0;n<N;n++) { prefsum0[n+1] = prefsum0[n] + (str[n] == '0'? 1: 0); prefsum1[n+1] = prefsum1[n] + (str[n] == '1'? 1: 0); } StringBuilder sb = new StringBuilder(); for(int q=0;q<Q;q++) { int l = in.nextInt()-1; int r = in.nextInt(); long num0 = prefsum0[r] - prefsum0[l]; long num1 = prefsum1[r] - prefsum1[l]; long partOne = add(pow(2L, num1), negate(1)); long partTwo = mult(partOne, add(pow(2L, num0), negate(1))); sb.append(add(partOne, partTwo)).append('\n'); } System.out.println(sb); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.util.StringTokenizer; public class C { public static void main(String[] args) throws IOException { try (Input input = new StandardInput(); PrintWriter writer = new PrintWriter(System.out)) { int n = input.nextInt(); int q = input.nextInt(); char[] s = input.next().toCharArray(); int[] p0 = new int[n + 1]; for (int i = 1; i <= n; i++) { p0[i] = p0[i - 1] + (s[i - 1] == '0' ? 1 : 0); } int[] pow2 = new int[n + 1]; pow2[0] = 1; int mod = 1_000_000_007; for (int i = 1; i <= n; i++) { pow2[i] = pow2[i - 1] * 2; if (pow2[i] >= mod) { pow2[i] -= mod; } } for (int i = 1; i <= q; i++) { int l = input.nextInt(), r = input.nextInt(); int c0 = p0[r] - p0[l - 1]; int c1 = (r - l + 1) - c0; int answer = pow2[c0 + c1] - pow2[c0]; if (answer < 0) { answer += mod; } writer.println(answer); } } } interface Input extends Closeable { String next() throws IOException; default int nextInt() throws IOException { return Integer.parseInt(next()); } default long nextLong() throws IOException { return Long.parseLong(next()); } } private static class StandardInput implements Input { private final BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); private StringTokenizer stringTokenizer; @Override public void close() throws IOException { reader.close(); } @Override public String next() throws IOException { if (stringTokenizer == null || !stringTokenizer.hasMoreTokens()) { stringTokenizer = new StringTokenizer(reader.readLine()); } return stringTokenizer.nextToken(); } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
//package All_in_all; import java.io.*; import java.math.BigInteger; import java.util.*; /** * Created by nikitos on 25.08.17. */ public class simvoli { public StreamTokenizer t; private final int INF = Integer.MAX_VALUE / 2; private int mod = 1000000000 + 7; public int nextInt() throws IOException { t.nextToken(); return (int) t.nval; } public long nextLong() throws IOException { t.nextToken(); return (long) t.nval; } public String nextString() throws IOException { t.nextToken(); return t.sval; } public void start() throws IOException { BufferedReader buf = new BufferedReader(new InputStreamReader(System.in)); String[] in = buf.readLine().split("[ ]"); int n = Integer.parseInt(in[0]); int q = Integer.parseInt(in[1]); String st = buf.readLine(); int[] pref = new int[n + 1]; pref[1] = st.charAt(0) == '1'? 1 : 0; for (int i = 2; i < n + 1; i++) { pref[i] = pref[i - 1] + (st.charAt(i - 1) == '1'? 1 : 0); } dp = new long[100005]; fill(dp); for (int i = 0; i < q; i++) { in = buf.readLine().split("[ ]"); int from = Integer.parseInt(in[0]); int to = Integer.parseInt(in[1]); int numOne = pref[to] - pref[from - 1]; int numAll = to - from + 1; if (numOne == 0) { System.out.println(0); continue; } long ans = (dp[numAll] - dp[numAll - numOne] + mod) % mod; System.out.println(ans); } } private long dp[]; private int modWas[]; private void fill(long[] dp) { dp[1] = 1; for (int i = 2; i < 100005; ++i) { dp[i] += 2 * dp[i - 1] + 1; dp[i] %= mod; } } public static void main(String[] args) throws IOException { new simvoli().start(); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int MAX = 1e5 + 5; const long long MOD = 1e9 + 7; int n, q, arr[MAX]; long long pp[MAX]; long long pro(int cnt, int len) { long long ans = pp[cnt] - 1; ans += (pp[len - cnt] - 1) * ans; return (ans % MOD + MOD) % MOD; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); pp[0] = 1; for (int i = 1; i < MAX; i++) pp[i] = pp[i - 1] * 2 % MOD; cin >> n; cin >> q; for (int i = 1; i <= n; i++) { char c; cin >> c; if (c == '1') arr[i] = 1; arr[i] += arr[i - 1]; } while (q--) { int l, r; cin >> l >> r; int cnt = arr[r] - arr[l - 1]; int len = r - l + 1; cout << pro(cnt, len) << '\n'; } }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
from sys import * mod = int(1e9 + 7) sum0 = [0]*100005 sum1 = [0]*100005 f = [0]*100005 f[1] = 1 res = 1 for i in range(2,100001): res = (res * 2) % mod f[i] = (f[i-1] + res) % mod n,q = map(int,stdin.readline().split()) s = stdin.readline() for i in range(len(s)): sum0[i+1] = sum0[i] sum1[i+1] = sum1[i] if s[i] == "1": sum1[i+1] += 1 else: sum0[i+1] += 1 for i in range(q): l,r = map(int,stdin.readline().split()) one = sum1[r] - sum1[l-1] zero = sum0[r] - sum0[l-1] ans = f[one] ans += f[one] * f[zero] ans %= mod print(ans)
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.util.*; public class B { public static void main (String[] args) { new B(); } public B() { FastScanner fs = new FastScanner(); PrintWriter out = new PrintWriter(System.out); System.err.println(""); int MAX = 100100; int MOD = (int)1e9+7; int[] pows = new int[MAX]; pows[0] = 1; for(int i = 1; i < MAX; i++) { pows[i] = pows[i-1]+pows[i-1]; if(pows[i] >= MOD) pows[i] -= MOD; } int[] prefPow = new int[MAX]; for(int i = 0; i < MAX; i++) { prefPow[i] = pows[i]; if(i > 0) { prefPow[i] += prefPow[i-1]; prefPow[i] %= MOD; } } int n = fs.nextInt(), q = fs.nextInt(); char[] str = fs.next().toCharArray(); int[] pref = new int[n]; for(int i = 0; i < n; i++) { pref[i] += str[i]-'0'; if(i > 0) pref[i] += pref[i-1]; } for(int qq = 0; qq < q; qq++) { int l = fs.nextInt()-1, r = fs.nextInt()-1; int num1 = pref[r]; if(l > 0) num1 -= pref[l-1]; if(num1 == 0) { out.println(0); continue; } int sum = prefPow[num1-1]; int num0 = (r-l+1)-num1; if(num0 > 0) { long sum2 = prefPow[num0-1]; sum2 = sum2 * sum % MOD; sum = (int)((sum+sum2) % MOD); } out.println(sum); } out.close(); } class FastScanner { public int BS = 1<<16; public char NC = (char)0; byte[] buf = new byte[BS]; int bId = 0, size = 0; char c = NC; double num = 1; BufferedInputStream in; public FastScanner() { in = new BufferedInputStream(System.in, BS); } public FastScanner(String s) { try { in = new BufferedInputStream(new FileInputStream(new File(s)), BS); } catch (Exception e) { in = new BufferedInputStream(System.in, BS); } } public char nextChar(){ while(bId==size) { try { size = in.read(buf); }catch(Exception e) { return NC; } if(size==-1)return NC; bId=0; } return (char)buf[bId++]; } public int nextInt() { return (int)nextLong(); } public long nextLong() { num=1; boolean neg = false; if(c==NC)c=nextChar(); for(;(c<'0' || c>'9'); c = nextChar()) { if(c=='-')neg=true; } long res = 0; for(; c>='0' && c <='9'; c=nextChar()) { res = (res<<3)+(res<<1)+c-'0'; num*=10; } return neg?-res:res; } public double nextDouble() { double cur = nextLong(); return c!='.' ? cur:cur+nextLong()/num; } public String next() { StringBuilder res = new StringBuilder(); while(c<=32)c=nextChar(); while(c>32) { res.append(c); c=nextChar(); } return res.toString(); } public String nextLine() { StringBuilder res = new StringBuilder(); while(c<=32)c=nextChar(); while(c!='\n') { res.append(c); c=nextChar(); } return res.toString(); } public boolean hasNext() { if(c>32)return true; while(true) { c=nextChar(); if(c==NC)return false; else if(c>32)return true; } } public int[] nextIntArray(int n) { int[] res = new int[n]; for(int i = 0; i < n; i++) res[i] = nextInt(); return res; } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.math.*; import java.security.*; import java.text.*; import java.util.*; import java.util.concurrent.*; import java.util.regex.*; public class Solution { // Complete the sockMerchant function below. private static final Scanner scanner = new Scanner(System.in); public static void main(String[] args) throws IOException { int MAX = 100005, MOD = 1000000007; long[] power2 = new long[MAX]; power2[0] = 1; for(int i = 1; i < MAX; i++){ power2[i] = power2[i - 1] * 2; power2[i] %= MOD; } int l, r, a, b; int[] count = new int[MAX]; int n = scanner.nextInt(), q = scanner.nextInt(); String s = scanner.next(); for(int i = 0; i < s.length(); i++){ if(i > 0)count[i] = count[i - 1]; if(s.charAt(i) == '1'){ count[i]++; } } for(int i = 0; i < q; i++){ l = scanner.nextInt(); r = scanner.nextInt(); l--; r--; b = count[r] - (l > 0 ? count[l - 1] : 0); a = r - l + 1 - b; // System.out.println(a + " " + b); // System.out.println(power(2, 10, MOD)); // System.out.println(power(2, 10000, MOD)); // System.out.println(power(2, a + b, MOD)); long ans; if(b == 0)ans = 0; else ans = (power2[a + b] - power2[a]) % MOD; if(ans < 0)ans += MOD; System.out.println(ans); } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import org.omg.PortableInterceptor.SYSTEM_EXCEPTION; import java.io.*; import java.math.*; import java.util.*; // author @mdazmat9 public class CodeForces_C { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); int n=sc.nextInt(); int q=sc.nextInt(); String s=sc.next(); int one=0; List<Integer> list=new ArrayList<>(); list.add(0); for(int i=0;i<n;i++){ if( s.charAt(i)=='1') one++; list.add(one); } for(int ind=0;ind<q;ind++) { int l=sc.nextInt(); int r=sc.nextInt(); int o=list.get(r)-list.get(l-1); int z=r-l+1-o; long ans=(pow(2,z,m)*(pow(2,o,m)-1))%m; System.out.println(ans); } } static long m=(long) (Math.pow(10,9)+7); static long pow(long x, long y, long p){ long res = 1; x = x % p; while (y > 0) { if ((y & 1)==1) res = (res*x) % p; y = y>>1; x = (x*x) % p; } return res; } static long gcd(long a , long b) { if(b == 0) return a; return gcd(b , a % b); } } class Scanner { public BufferedReader reader; public StringTokenizer st; public Scanner(InputStream stream) { reader = new BufferedReader(new InputStreamReader(stream)); st = null; } public String next() { while (st == null || !st.hasMoreTokens()) { try { String line = reader.readLine(); if (line == null) return null; st = new StringTokenizer(line); } catch (Exception e) { throw (new RuntimeException()); } } return st.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } } class OutputWriter { BufferedWriter writer; public OutputWriter(OutputStream stream) { writer = new BufferedWriter(new OutputStreamWriter(stream)); } public void print(int i) throws IOException { writer.write(i); } public void print(String s) throws IOException { writer.write(s); } public void print(char[] c) throws IOException { writer.write(c); } public void close() throws IOException { writer.close(); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.util.*; public class BanhMi { PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out))); Scanner in = new Scanner(new BufferedReader(new InputStreamReader(System.in))); long MOD = 1000000007; public void go() { int numParts = in.nextInt(); int numQueries = in.nextInt(); int[] oneCount = new int[numParts+1]; int[] zeroCount = new int[numParts+1]; char[] input = in.next().toCharArray(); for (int i = 1; i <= numParts; i++) { oneCount[i] = oneCount[i-1] + (input[i-1] == '1' ? 1 : 0); zeroCount[i] = zeroCount[i-1] + (input[i-1] == '0' ? 1 : 0); } for (int i = 0; i < numQueries; i++) { int low = in.nextInt(); int high = in.nextInt(); int ones = oneCount[high] - oneCount[low-1]; int zeros = zeroCount[high] - zeroCount[low-1]; long ans = (pow(2, ones) + MOD-1) % MOD; // out.println(" " + ans); ans = (ans * pow(2, zeros)) % MOD; out.println(ans); } out.flush(); in.close(); } public long pow(long x, int n) { if (n == 0) { return 1; } long x2 = x * x % MOD; return pow(x2, n/2) * (n % 2 == 0 ? 1 : x) % MOD; } public static void main(String[] args) { new BanhMi().go(); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int mod = 1e9 + 7; const int MAXN = 1e5 + 5; int N, Q; char S[MAXN]; int one[MAXN]; long long pw(long long a, long long p) { if (p == 0) return 1; if (p == 1) return a; long long t = pw(a, p / 2); t = (t * t) % mod; if (p & 1) t = (t * a) % mod; return t; } int main() { scanf("%d%d", &N, &Q); scanf("%s", S + 1); for (int i = 1; i <= N; i++) { one[i] = one[i - 1] + (S[i] == '1'); } for (int i = 1; i <= Q; i++) { int l, r; scanf("%d%d", &l, &r); int o = one[r] - one[l - 1]; int z = (r - l + 1) - o; long long ans = pw(2LL, z); ans = (ans * (pw(2LL, o) - 1)) % mod; printf("%lld\n", ans); } }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.util.*; public class Main { private void solve()throws Exception { int n=nextInt(); int q=nextInt(); String s=nextLine(); int ones[]=new int[n+1]; int zeroes[]=new int[n+1]; for(int i=1;i<=n;i++) { ones[i]=ones[i-1]+(s.charAt(i-1)=='1'?1:0); zeroes[i]=zeroes[i-1]+(s.charAt(i-1)=='0'?1:0); } while(q-->0) { int l=nextInt(); int r=nextInt(); int a=ones[r]-ones[l-1]; int b=zeroes[r]-zeroes[l-1]; long ans=(modpow(2,a)-1+mod)%mod; ans=(ans+(ans*((modpow(2,b)-1+mod)%mod))%mod)%mod; out.println(ans); } } final long mod=(long)(1e9+7); long modpow(long a,long b){ long ret=1; while(b!=0) { if(b%2==1) ret=(ret*a)%mod; a=(a*a)%mod; b=b/2; } return ret; } /////////////////////////////////////////////////////////// public void run()throws Exception { br=new BufferedReader(new InputStreamReader(System.in)); st=null; out=new PrintWriter(System.out); solve(); br.close(); out.close(); } public static void main(String args[])throws Exception{ new Main().run(); } BufferedReader br; StringTokenizer st; PrintWriter out; String nextToken()throws Exception{ while(st==null || !st.hasMoreTokens()) st=new StringTokenizer(br.readLine()); return st.nextToken(); } String nextLine()throws Exception{ return br.readLine(); } int nextInt()throws Exception{ return Integer.parseInt(nextToken()); } long nextLong()throws Exception{ return Long.parseLong(nextToken()); } double nextDouble()throws Exception{ return Double.parseDouble(nextToken()); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; int main() { long long n, q; cin >> n >> q; vector<long long> powe(n + 1, 0); powe[0] = 1; for (long long i = 1; i <= n; i++) powe[i] = (powe[i - 1] * 2) % 1000000007; vector<long long> A(n, 0), pre(n, 0); string s; cin >> s; for (long long i = 0; i < n; i++) if (s[i] == '1') A[i] = 1; for (long long i = 0; i < n; i++) pre[i] = A[i] + (i - 1 >= 0 ? pre[i - 1] : 0); for (long long i = 0; i < q; i++) { long long l, r; cin >> l >> r; l--; r--; long long num = r - l + 1, one = pre[r] - (l - 1 >= 0 ? pre[l - 1] : 0); long long zer = num - one; long long val = powe[one] - 1; long long val2 = powe[zer] - 1; val = ((val + ((val * val2) % 1000000007) % 1000000007) % 1000000007 + 2 * 1000000007) % 1000000007; cout << val << endl; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
# -*- coding:utf-8 -*- """ created by shuangquan.huang at 11/19/18 """ N, M = map(int, input().split()) A = [int(x) for x in input()] memo = [-1] * (N+1) def pow(n): if n == 0: return 1 if n < 30: return 1 << n if memo[n] >= 0: return memo[n] half = pow(n // 2) ans = half * half if n % 2 != 0: ans *= 2 ans %= MOD memo[n] = ans return ans MOD = 10 ** 9 + 7 left = [0] * (N + 1) for i in range(1, N + 1): left[i] = left[i - 1] + A[i - 1] ans = [] for qi in range(M): l, r = map(int, input().split()) ones = left[r] - left[l - 1] zeros = r - l + 1 - ones x = pow(ones) - 1 y = x * (pow(zeros)- 1) ans.append((x + y) % MOD) print('\n'.join(map(str, ans)))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.io.FilterInputStream; import java.io.BufferedInputStream; import java.io.InputStream; /** * @author khokharnikunj8 */ public class Main { public static void main(String[] args) { new Thread(null, new Runnable() { public void run() { new Main().solve(); } }, "1", 1 << 26).start(); } void solve() { InputStream inputStream = System.in; OutputStream outputStream = System.out; ScanReader in = new ScanReader(inputStream); PrintWriter out = new PrintWriter(outputStream); CBanhMi solver = new CBanhMi(); solver.solve(1, in, out); out.close(); } static class CBanhMi { long mod = 1000000007; public void solve(int testNumber, ScanReader in, PrintWriter out) { int n = in.scanInt(); int q = in.scanInt(); char[] ar = in.scanString().toCharArray(); int[] prefix = new int[n + 1]; for (int i = 1; i <= n; i++) { prefix[i] += prefix[i - 1]; prefix[i] += (ar[i - 1] - '0'); } long[] ans = new long[n + 1]; long[] pow = new long[n + 1]; pow[0] = 1; long sum = 0; for (int i = 1; i <= n; i++) { ans[i] = (sum + 1) % mod; sum = (sum + ans[i]) % mod; pow[i] = (pow[i - 1] * 2) % mod; } for (int i = 1; i <= n; i++) ans[i] = (ans[i - 1] + ans[i]) % mod; while (q-- > 0) { int l = in.scanInt(); int r = in.scanInt(); int tt = prefix[r] - prefix[l - 1]; long anss = ans[tt]; anss = (anss * pow[r - l + 1 - tt]) % mod; out.println(anss); } } } static class ScanReader { private byte[] buf = new byte[4 * 1024]; private int index; private BufferedInputStream in; private int total; public ScanReader(InputStream inputStream) { in = new BufferedInputStream(inputStream); } private int scan() { if (index >= total) { index = 0; try { total = in.read(buf); } catch (Exception e) { e.printStackTrace(); } if (total <= 0) return -1; } return buf[index++]; } public int scanInt() { int integer = 0; int n = scan(); while (isWhiteSpace(n)) n = scan(); int neg = 1; if (n == '-') { neg = -1; n = scan(); } while (!isWhiteSpace(n)) { if (n >= '0' && n <= '9') { integer *= 10; integer += n - '0'; n = scan(); } } return neg * integer; } public String scanString() { int c = scan(); if (c == -1) return null; while (isWhiteSpace(c)) c = scan(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = scan(); } while (!isWhiteSpace(c)); return res.toString(); } private boolean isWhiteSpace(int n) { if (n == ' ' || n == '\n' || n == '\r' || n == '\t' || n == -1) return true; else return false; } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const long long inf = 1e18 + 5LL; const long long mod = 1e9 + 7LL; void solve(); void ITO(); int32_t main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); ITO(); long long t = 1; while (t--) solve(); return 0; } const long long N = (1e7 + 1); long long modular_exp(long long a, long long n) { if (n == 0) return 1; long long res = 1; while (n > 0) { if (n % 2 != 0) res *= a; a = (a * a) % mod; n = n / 2; res = res % mod; } res = (res % mod); return res; } void solve() { long long n, q; cin >> n >> q; string s; cin >> s; long long pre[n]; for (long long i = 0; i < n; i++) { pre[i] = s[i] - '0'; if (i > 0) pre[i] += pre[i - 1]; } while (q--) { long long l, r; cin >> l >> r; l--, r--; long long o = pre[r] - (l - 1 >= 0 ? pre[l - 1] : 0); long long z = (r - l + 1) - o; long long res = modular_exp(2, (r - l + 1)) - 1; res -= (modular_exp(2, z) - 1); res += mod; res %= mod; cout << res << "\n"; } cout << "\n"; return; } void ITO() {}
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.util.Scanner; public class Main { static long mod = 1000000007; public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); int q = in.nextInt(); in.nextLine(); long[] pot = initTwoPot(n); int[] arr = new int[n]; String s = in.nextLine(); int count = 0; for(int i=0; i<n; i++) { count += s.charAt(i) - '0'; arr[i] = count; } int l, r, ones, zeros; long res; for(int i=0; i<q; i++) { l = in.nextInt()-1; r = in.nextInt()-1; count = (r-l) + 1; ones = arr[r]; if(l-1>=0) ones -= arr[l-1]; zeros = count - ones; res = ((pot[ones]-1) * pot[zeros])%mod; System.out.println(res); } } static long[] initTwoPot(int n) { long[] pot = new long[n+1]; pot[0] = 1; for(int i=1; i<=n; i++) { pot[i] = (pot[i-1]*2)%mod; } return pot; } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const long long mod = 1e9 + 7; long long power(long long x, long long y, long long p) { long long r = 1; x = x % p; while (y > 0) { if (y & 1) r = (r * x) % p; y = y >> 1; x = (x * x) % p; } return r; } int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); { long long n, q; cin >> n >> q; string s; cin >> s; unordered_map<long long, long long> one, zero; for (long long i = 0; i < n; i++) { if (s[i] == '1') one[i] += 1; if (s[i] == '0') zero[i] += 1; one[i] += one[i - 1]; zero[i] += zero[i - 1]; } while (q--) { long long a, b; cin >> a >> b; a--; b--; long long o = one[b] - one[a - 1]; long long z = zero[b] - zero[a - 1]; if (o == 0) { cout << 0 << endl; continue; } long long ans; ans = power(2, o, mod) % mod - 1; if (z != 0) ans = (ans % mod + (ans * (power(2, z, mod) - 1)) % mod) % mod; cout << ans << endl; } } }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int MOD = 1e9 + 7; int sum[1000100]; long long ans[1000100]; int main() { ans[0] = 1; for (int i = 1; i < 1000100; i++) { ans[i] = ans[i - 1] * 2; ans[i] %= MOD; } int n, q; cin >> n >> q; string s; cin >> s; for (int i = 1; i <= s.size(); i++) { sum[i] = s[i - 1] - '0'; sum[i] += sum[i - 1]; } for (int a, b, i = 0; i < q; i++) { cin >> a >> b; int y = sum[b] - sum[a - 1]; int k = b - a + 1; y = k - y; cout << (ans[k] - ans[y] + MOD) % MOD << endl; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import sys from math import floor, ceil #sys.stdin = open('input.txt', 'r') inp = lambda: sys.stdin.readline().strip() MOD = 1e9 + 7 n, q = map(int, inp().split()) s = inp() d = [0] * (n + 1) pwr2 = [0] * (n + 1) pwr2[0] = 1 for i in range(1, n + 1): pwr2[i] = int(((pwr2[i - 1] * 2) % MOD)) for i in range(n): t = 0 if s[i] == '1': t = 1 d[i + 1] = d[i] + t while q != 0: q -= 1 l, r = map(int, inp().split()) one = d[r] - d[l - 1] zero = (r - l + 1) - one ans = (pwr2[one + zero] - pwr2[zero] + MOD) % MOD print(int(ans))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
for _ in range(1): n,q = map(int,input().split()) s = input() # s = s[:-2] # s = s[1:] s = list(s) # print(s) zeros = [0]*n ones = [0]*n if (s[0]=='1'): ones[0]=1 else: zeros[0]=1 for i in range(1,n): ones[i]+=ones[i-1] zeros[i]+=zeros[i-1] if (s[i]=='1'): ones[i]+=1 else: zeros[i]+=1 zeros = [0]+zeros ones = [0]+ones mod = 1000000007 a= [] for i in range(q): l,r = map(int,input().split()) x = ones[r]-ones[l-1] y = zeros[r]-zeros[l-1] # print(x,y) ans = (pow(2,x,mod)-1)%mod ans = (ans*pow(2,y,mod))%mod # print(ans) a.append(str(ans)) print('\n'.join(map(str,a)))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.util.*; public class TaskC { public static void main(String[] args) { new TaskC(System.in, System.out); } static class Solver implements Runnable { static final long MOD = (long) 1e9 + 7; int n, q; char[] s; int[] arr; long[] tree; BufferedReader in; // InputReader in; PrintWriter out; void solve() throws IOException { String[] tok = in.readLine().split(" "); n = Integer.parseInt(tok[0]); q = Integer.parseInt(tok[1]); s = in.readLine().toCharArray(); arr = new int[n]; tree = new long[n << 2]; for (int i = 0; i < n; i++) { if (s[i] == '1') arr[i] = 1; } buildTree(1, 0, n - 1); while (q-- > 0) { tok = in.readLine().split(" "); int l = Integer.parseInt(tok[0]) - 1; int r = Integer.parseInt(tok[1]) - 1; long size = (r - l); long ones = queryTree(1, 0, n - 1, l, r); long zeroes = size + 1 - ones; long a = CMath.modPower(2, ones, MOD) - 1; if (a < 0) a += MOD; long x = CMath.modPower(2, zeroes, MOD) - 1; if (x < 0) x += MOD; long b = CMath.mod(a * x, MOD); // System.out.println("ones : " + ones + ", 2^ones - 1 : " + a); out.println(CMath.mod(a + b, MOD)); /* System.out.println("l : " + l + ", r : " + r + ", size : " + size); System.out.println("query : " + queryTree(1, 0, n - 1, l, r)); out.println(queryTree(1, 0, n - 1, l, r) + (size * (size + 1) / 2));*/ } } void buildTree(int node, int treeStart, int treeEnd) { if (treeStart > treeEnd) return; // i.e., leaf node if (treeStart == treeEnd) { tree[node] = arr[treeStart]; return; } int mid = (treeStart + treeEnd) / 2; // left child buildTree(2 * node, treeStart, mid); // right child buildTree(2 * node + 1, mid + 1, treeEnd); // tree[node] = Math.max(tree[2 * node], tree[2 * node + 1]); tree[node] = tree[2 * node] + tree[2 * node + 1]; } long queryTree(int node, int treeStart, int treeEnd, int rangeStart, int rangeEnd) { // if the query range is completely out of the range that this node stores information of if (treeStart > treeEnd || treeStart > rangeEnd || treeEnd < rangeStart) return 0; // if the range that this node holds is completely inside of the qeury range if (treeStart >= rangeStart && treeEnd <= rangeEnd) return tree[node]; int mid; long leftChildMax, rightChildMax; mid = (treeStart + treeEnd) / 2; leftChildMax = queryTree(2 * node, treeStart, mid, rangeStart, rangeEnd); rightChildMax = queryTree(2 * node + 1, mid + 1, treeEnd, rangeStart, rangeEnd); return leftChildMax + rightChildMax; } public Solver(BufferedReader in, PrintWriter out) { this.in = in; this.out = out; } @Override public void run() { try { solve(); } catch (IOException e) { e.printStackTrace(); } } } static class CMath { static long power(long number, long power) { if (number == 1 || number == 0 || power == 0) return 1; if (power == 1) return number; if (power % 2 == 0) return power(number * number, power / 2); else return power(number * number, power / 2) * number; } static long modPower(long number, long power, long mod) { if (number == 1 || number == 0 || power == 0) return 1; number = mod(number, mod); if (power == 1) return number; long square = mod(number * number, mod); if (power % 2 == 0) return modPower(square, power / 2, mod); else return mod(modPower(square, power / 2, mod) * number, mod); } static long moduloInverse(long number, long mod) { return modPower(number, mod - 2, mod); } static long mod(long number, long mod) { return number - (number / mod) * mod; } static int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); } static long min(long... arr) { long min = arr[0]; for (int i = 1; i < arr.length; i++) min = Math.min(min, arr[i]); return min; } static long max(long... arr) { long max = arr[0]; for (int i = 1; i < arr.length; i++) max = Math.max(max, arr[i]); return max; } static int min(int... arr) { int min = arr[0]; for (int i = 1; i < arr.length; i++) min = Math.min(min, arr[i]); return min; } static int max(int... arr) { int max = arr[0]; for (int i = 1; i < arr.length; i++) max = Math.max(max, arr[i]); return max; } } static class Utils { static boolean nextPermutation(int[] arr) { for (int a = arr.length - 2; a >= 0; --a) { if (arr[a] < arr[a + 1]) { for (int b = arr.length - 1; ; --b) { if (arr[b] > arr[a]) { int t = arr[a]; arr[a] = arr[b]; arr[b] = t; for (++a, b = arr.length - 1; a < b; ++a, --b) { t = arr[a]; arr[a] = arr[b]; arr[b] = t; } return true; } } } } return false; } } public TaskC(InputStream inputStream, OutputStream outputStream) { // uncomment below line to change to BufferedReader BufferedReader in = new BufferedReader(new InputStreamReader(inputStream)); PrintWriter out = new PrintWriter(outputStream); Thread thread = new Thread(null, new Solver(in, out), "TaskC", 1 << 29); try { thread.start(); thread.join(); } catch (InterruptedException e) { e.printStackTrace(); } finally { try { in.close(); } catch (IOException e) { e.printStackTrace(); } out.flush(); out.close(); } } } /* 5 3 00000 1 3 1 5 2 4 5 3 10000 1 5 1 3 2 5 */
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.util.*;import java.io.*;import java.math.*; public class Main { public static void process()throws IOException { int n=ni(),q=ni(); char arr[]=(" "+nln()).toCharArray(); int pref_0[]=new int[n+2],pref_1[]=new int[n+2]; for(int i=1;i<=n;i++){ if(arr[i]=='0') pref_0[i]++; else pref_1[i]++; pref_0[i]+=pref_0[i-1]; pref_1[i]+=pref_1[i-1]; } while(q-- > 0){ int l=ni(),r=ni(); int one=pref_1[r]-pref_1[l-1],zero=pref_0[r]-pref_0[l-1]; long res=0l,sum=0l; sum=(long)mpow(2, one)-1l; sum=(sum+mod)%mod; res=sum; res+=((sum*((mpow(2,zero)-1l+mod)))%mod)%mod; res=res%mod; pn(res); } } static AnotherReader sc; static PrintWriter out; public static void main(String[]args)throws IOException { out = new PrintWriter(System.out); sc=new AnotherReader(); boolean oj = true; oj = System.getProperty("ONLINE_JUDGE") != null; if(!oj) sc=new AnotherReader(100); long s = System.currentTimeMillis(); int t=1; // t=ni(); while(t-->0) process(); out.flush(); if(!oj) System.out.println(System.currentTimeMillis()-s+"ms"); System.out.close(); } static void pn(Object o){out.println(o);} static void p(Object o){out.print(o);} static void pni(Object o){out.println(o);System.out.flush();} static int ni()throws IOException{return sc.nextInt();} static long nl()throws IOException{return sc.nextLong();} static double nd()throws IOException{return sc.nextDouble();} static String nln()throws IOException{return sc.nextLine();} static long gcd(long a, long b)throws IOException{return (b==0)?a:gcd(b,a%b);} static int gcd(int a, int b)throws IOException{return (b==0)?a:gcd(b,a%b);} static int bit(long n)throws IOException{return (n==0)?0:(1+bit(n&(n-1)));} static boolean multipleTC=false; static long mod=(long)1e9+7l; static void r_sort(int arr[],int n){ Random r = new Random(); for (int i = n-1; i > 0; i--){ int j = r.nextInt(i+1); int temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } Arrays.sort(arr); } static long mpow(long x, long n) { if(n == 0) return 1; if(n % 2 == 0) { long root = mpow(x, n / 2); return root * root % mod; }else { return x * mpow(x, n - 1) % mod; } } static long mcomb(long a, long b) { if(b > a - b) return mcomb(a, a - b); long m = 1; long d = 1; long i; for(i = 0; i < b; i++) { m *= (a - i); m %= mod; d *= (i + 1); d %= mod; } long ans = m * mpow(d, mod - 2) % mod; return ans; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// static class AnotherReader{BufferedReader br; StringTokenizer st; AnotherReader()throws FileNotFoundException{ br=new BufferedReader(new InputStreamReader(System.in));} AnotherReader(int a)throws FileNotFoundException{ br = new BufferedReader(new FileReader("input.txt"));} String next()throws IOException{ while (st == null || !st.hasMoreElements()) {try{ st = new StringTokenizer(br.readLine());} catch (IOException e){ e.printStackTrace(); }} return st.nextToken(); } int nextInt() throws IOException{ return Integer.parseInt(next());} long nextLong() throws IOException {return Long.parseLong(next());} double nextDouble()throws IOException { return Double.parseDouble(next()); } String nextLine() throws IOException{ String str = ""; try{ str = br.readLine();} catch (IOException e){ e.printStackTrace();} return str;}} ///////////////////////////////////////////////////////////////////////////////////////////////////////////// }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int MOD = 1e9 + 7; class segTree { private: vector<int> seg; public: segTree(int n = 0) { seg.assign(4 * n + 7, 0); } void build(int k, int l, int r, int x, int val) { if (x < l || r < x) return; if (l == r) { seg[k] = val; return; } int mid = (l + r) / 2; build(k * 2, l, mid, x, val); build(k * 2 + 1, mid + 1, r, x, val); seg[k] = seg[k * 2] + seg[k * 2 + 1]; } int get(int k, int l, int r, int u, int v) { if (v < l || u > r) return 0; if (u <= l && r <= v) return seg[k]; int mid = (l + r) / 2; return get(k * 2, l, mid, u, v) + get(k * 2 + 1, mid + 1, r, u, v); } }; int p[200000]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, q; cin >> n >> q; char s; segTree seg(n); for (int i = 1; i <= n; i++) { cin >> s; seg.build(1, 1, n, i, s - '0'); } p[0] = 1; for (int i = 1; i <= n; i++) p[i] = (1ll * p[i - 1] * 2) % MOD; for (int i = 0; i < q; i++) { int u, v; cin >> u >> v; int g1 = seg.get(1, 1, n, u, v); int g0 = v - u + 1 - g1; long long ans = (p[g1] - 1 + MOD) % MOD; ans = 1ll * p[g0] * ans % MOD; cout << ans << "\n"; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10; const int mod = 1e9 + 7; char s[N]; int num[N]; long long quickpow(long long a, long long m) { long long res = 1; long long b = a; while (m) { if (m & 1) res = res * b % mod; b = b * b % mod; m >>= 1; } return res; } int main() { int n, q; scanf("%d%d", &n, &q); scanf("%s", s + 1); for (int i = 1; i <= n; i++) { if (s[i] == '0') num[i] = num[i - 1]; else num[i] = num[i - 1] + 1; } while (q--) { int l, r; scanf("%d%d", &l, &r); int c = num[r] - num[l - 1]; int cc = r - l + 1 - c; long long ans = (quickpow(2, c) - 1) * (quickpow(2, cc)) % mod; printf("%lld\n", ans); } }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.util.*; /** * * @author akash_2ehuikg * Coding is love <3! */ public class C { public static void main(String args[]) { try { int n=nextInt(); int q=nextInt(); String s=" "+next(); int A[]=new int[n+1]; int count=0; for (int i = 1; i < s.length(); i++) { if(s.charAt(i)=='0')count++; A[i]=count; } while(q-->0){ int l=nextInt(); int r=nextInt(); long n0=A[r]-A[l-1]; long ans=power(2, r-l+1, mod)-power(2,n0,mod); while(ans<0)ans+=mod; bw.write(ans%mod+"\n"); } bw.flush(); } catch (Exception e) { e.printStackTrace(); } } //TEMPLATE //****************************************************************************** // Fast I/O static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); static StringTokenizer st = null; static int mod=1000000007; static String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } static int nextInt() { return Integer.parseInt(next()); } static long nextLong() { return Long.parseLong(next()); } static double nextDouble() { return Double.parseDouble(next()); } static int b_search(int l,int r,int A[],int key){ int ans=0; l=0;r=1000000000; while(l<r){ //System.out.println(ans); ans=(l+r)/2; long temp=0; for (int i = 0; i < A.length; i++) { temp+=(long)Math.ceil((double)A[i]/(double)ans); } if(temp<=key){ r=ans; } else{ l=ans+1; ans=r; } } return ans; } //****************************************************************************** //Modulo and FastExpo static long modInverse(long a) { return power(a, mod - 2,mod); } // To compute x^y under modulo m static long power(long x, long y, int p) { // Initialize result long res = 1; // Update x if it is more // than or equal to p x = x % p; while (y > 0) { // If y is odd, multiply x // with result if((y & 1)==1) res = (res * x) % p; // y must be even now // y = y / 2 y = y >> 1; x = (x * x) % p; } return res; } //****************************************************************************** //GCD static long gcd(long a, long b) { if (a == 0) return b; return gcd(b%a, a); } //****************************************************************************** // Useful user datatype static class Pair{ public long x; public long y; public Pair(long first, long second){ this.x = first; this.y = second; } @Override public String toString() { return "(" + x + "," + y + ")"; } } static Comparator csort=new Comparator<Pair>(){ public int compare(Pair a, Pair b) { if(a.x < b.x) return -1; else if (a.x > b.x) return 1; else if(a.y < b.y) return -1; else if (a.y > b.y) return 1; else return 0; } }; //****************************************************************************** //N choose K public static long choose(long total, long choose){ if(total < choose) return 0; if(choose == 0 || choose == total) return 1; return choose(total-1,choose-1)+choose(total-1,choose); } //****************************************************************************** //Permutations // simply prints all permutation - to see how it works private static void printPermutations( Comparable[] c ) { System.out.println( Arrays.toString( c ) ); while ( ( c = nextPermutation( c ) ) != null ) { System.out.println( Arrays.toString( c ) ); } } // modifies c to next permutation or returns null if such permutation does not exist private static Comparable[] nextPermutation( final Comparable[] c ) { // 1. finds the largest k, that c[k] < c[k+1] int first = getFirst( c ); if ( first == -1 ) return null; // no greater permutation // 2. find last index toSwap, that c[k] < c[toSwap] int toSwap = c.length - 1; while ( c[ first ].compareTo( c[ toSwap ] ) >= 0 ) --toSwap; // 3. swap elements with indexes first and last swap( c, first++, toSwap ); // 4. reverse sequence from k+1 to n (inclusive) toSwap = c.length - 1; while ( first < toSwap ) swap( c, first++, toSwap-- ); return c; } // finds the largest k, that c[k] < c[k+1] // if no such k exists (there is not greater permutation), return -1 private static int getFirst( final Comparable[] c ) { for ( int i = c.length - 2; i >= 0; --i ) if ( c[ i ].compareTo( c[ i + 1 ] ) < 0 ) return i; return -1; } // swaps two elements (with indexes i and j) in array private static void swap( final Comparable[] c, final int i, final int j ) { final Comparable tmp = c[ i ]; c[ i ] = c[ j ]; c[ j ] = tmp; } //****************************************************************************** // DSU //Maintain an Array A with N elements and Array size for size of each set, intialize A[i]=i and size[i]=1 static int root(int A[],int i){ while(A[i]!=i){ A[i]=A[A[i]]; i=A[i]; } return i; } static boolean find(int A[],int a,int b){ if(root(A,a)==root(A,b))return true; else return false; } static void union(int A[],int size[],int a,int b){ int ra=root(A,a); int rb=root(A,b); if(ra==rb)return; if(size[ra]<size[rb]){ A[ra]=A[rb]; size[rb]+=size[ra]; }else{ A[rb]=A[ra]; size[ra]+=size[rb]; } } //************************************************************************** //BinarySearch /* binary search for 5: v-- lower bound 1 2 3 4 5 5 5 6 7 9 ^-- upper bound binary search for 8 v-- lower bound 1 2 3 4 5 5 5 6 7 9 ^-- upper bound */ //For finding greater than static int upper_bound(int A[],int key){ int first = 0; int last = A.length; int mid; while (first < last) { mid =first+(last - first)/2; if (A[mid] <= key) first = mid + 1; else last = mid; } return first; } //For finding greater than equal to static int lower_bound(int A[],int key){ int first = 0; int last = A.length; int mid=0; while (first < last) { mid = first + ((last - first) >> 1); if (A[mid] < key) first = mid + 1; else last = mid; } return first; } //************************************************************************** }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; vector<long long> _data; long long a, q, b, k, l, r, n, m, tmp, ans = 0; template <int m> struct modint { long long x; modint() : x(0) {} modint(long long arg) { arg %= m; if (arg < 0) x = arg + m; else x = arg; } modint& operator+=(const modint& other) { x += other.x; if (x >= m) x -= m; return *this; } modint& operator*=(const modint& other) { x = (x * 1ll * other.x) % m; return *this; } modint& operator-=(const modint& other) { x += m - other.x; if (x >= m) x -= m; return *this; } modint operator+(const modint& other) const { modint tmp = *this; tmp += other; return tmp; } modint operator-(const modint& other) const { modint tmp = *this; tmp -= other; return tmp; } modint operator*(const modint& other) const { modint tmp = *this; tmp *= other; return tmp; } explicit operator int() const { return x; } modint& operator++() { ++x; if (x == m) x = 0; return *this; } modint& operator--() { if (x == 0) x = m - 1; else --x; return *this; } modint operator++(int) { modint tmp = *this; ++*this; return tmp; } modint operator--(int) { modint tmp = *this; --*this; return tmp; } bool operator==(const modint& other) const { return x == other.x; } bool operator!=(const modint& other) const { return x != other.x; } template <class T> modint operator^(T arg) const { if (arg == 0) return 1; if (arg == 1) return x; auto t = *this ^ (arg >> 1); t *= t; if (arg & 1) t *= *this; return t; } modint inv() const { return *this ^ (m - 2); } }; const int MOD = 1000000007; int get_ans(int x, int y) { if (x == 0) return 0; modint<MOD> ansx(2); ansx = ansx ^ (x); ansx--; if (y == 0) { return ansx.x; } modint<MOD> ansy(2); ansy = ansy ^ (y); ansy--; ansy *= ansx; ansy += ansx; return ansy.x; } int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); cin >> n >> q; string text; cin >> text; _data.resize(n + 1); _data[0] = 0; for (int i = 1; i <= n; i++) { _data[i] = _data[i - 1] + (text[i - 1] - '0'); } for (int i = 0; i < q; i++) { cin >> l >> r; --l; int num = _data[r] - _data[l]; int dist = r - l; cout << get_ans(num, dist - num) << "\n"; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; long long gcd(long long a, long long b) { return b ? gcd(b, a % b) : a; } const long long mod = 1e9 + 7; const int N = 1e5 + 10; char s[N]; long long sum[N], a[N]; int main() { int n, q; cin >> n >> q; cin >> s + 1; a[0] = 1; for (int i = 1; i <= n; ++i) a[i] = a[i - 1] * 2 % mod; for (int i = 1; i <= (n); ++i) { sum[i] = sum[i - 1] + s[i] - '0'; } int l, r; while (q--) { cin >> l >> r; int one = sum[r] - sum[l - 1]; int zero = r - l + 1 - one; long long ans = ((a[r - l + 1] - a[zero]) % mod + mod) % mod; printf("%lld\n", ans); } }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; void codeforces_520_A() { int n; scanf("%d", &n); int a[n]; for (int i = 0; i < n; i++) { scanf("%d", &a[i]); } int ans = 0; if (n == 1) { printf("0"); return; } else if (n == 2) { if (a[0] == 1 && a[1] == 2) { printf("1"); } else if (a[0] == 999 && a[1] == 1000) { printf("1"); } else { printf("0"); } return; } int ansans = 0; if (a[0] == 1 && a[1] == 2) { ansans++; } for (int i = 1; i < n - 1; i++) { if (a[i] == a[i - 1] + 1 && a[i] == a[i + 1] - 1) { ansans++; } else { ans = max(ans, ansans); ansans = 0; } } if (a[n - 2] == 999 && a[n - 1] == 1000) { ansans++; } ans = max(ans, ansans); printf("%d", ans); } void codeforces_520_B() { int prime[1000001] = {0}; prime[0] = 1; prime[1] = 1; for (int i = 2; i < 1000001; i++) { if (prime[i] == 0) { for (int j = i; j < 1000001; j += i) { prime[j] = 1; } prime[i] = 0; } } vector<int> primes; for (int i = 0; i < 10001; i++) { if (prime[i] == 0) { primes.push_back(i); } } int n; scanf("%d", &n); if (n == 1) { printf("1 0"); return; } vector<pair<int, int> > howmanyprime; int cur = 0; int num = 0; while (n != 1) { if (n % primes[cur] == 0) { n /= primes[cur]; num++; } else if (n % primes[cur] != 0) { if (num != 0) { howmanyprime.push_back({primes[cur], num}); num = 0; } cur++; if (primes[cur] * primes[cur] > n) { cur = 10000000; break; } } } if (cur == 10000000) { howmanyprime.push_back({n, 1}); } if (num != 0) { howmanyprime.push_back({primes[cur], num}); } int realans = 1; for (int i = 0; i < howmanyprime.size(); i++) { realans *= howmanyprime[i].first; } int realtime = 0; int mmax = 0; int isthereodd = 0; for (int i = 0; i < howmanyprime.size(); i++) { if (mmax < howmanyprime[i].second) { mmax = howmanyprime[i].second; } } for (int i = 0; i < howmanyprime.size(); i++) { if (howmanyprime[i].second < mmax) { isthereodd = 1; break; } } if ((mmax != 1) && (mmax != 2) && (mmax != 4) && (mmax != 8) && (mmax != 16) && (mmax != 32)) { isthereodd = 1; } realtime += isthereodd; while (mmax != 1) { mmax = (mmax + 1) / 2; realtime++; } printf("%d %d", realans, realtime); } void codeforces_520_C() { int pow2[1000005]; pow2[0] = 1; pow2[1] = 2; for (int i = 2; i < 1000005; i++) { pow2[i] = (pow2[i - 1] * 2) % 1000000007; } int n, q; scanf("%d %d", &n, &q); char s[n + 5]; scanf("%s", s); int good[n + 3]; for (int i = 1; i <= n; i++) { good[i] = s[i - 1] - '0'; } int howmanyzero[n + 3]; int howmanyone[n + 3]; howmanyzero[0] = 0; howmanyone[0] = 0; for (int i = 1; i <= n; i++) { if (good[i] == 1) { howmanyone[i] = howmanyone[i - 1] + 1; howmanyzero[i] = howmanyzero[i - 1]; } else { howmanyone[i] = howmanyone[i - 1]; howmanyzero[i] = howmanyzero[i - 1] + 1; } } while (q--) { int l, r; scanf("%d %d", &l, &r); int numone = howmanyone[r] - howmanyone[l - 1]; int numzero = howmanyzero[r] - howmanyzero[l - 1]; printf("%d\n", (pow2[numone + numzero] - pow2[numzero] + 1000000007) % 1000000007); } } void codeforces_520_D() {} void codeforces_520_E() {} void codeforces_520_F() {} int main(void) { codeforces_520_C(); codeforces_520_D(); codeforces_520_E(); codeforces_520_F(); return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import sys r = sys.stdin.readlines() M = 10 ** 9 + 7 n, q = r[0].split(' ') n = int(n) q = int(q) s = r[1] p = [0] for v in range(n): p.append(p[v] + int(s[v])) ans = [] for k in range(q): a, b = r[k + 2].split(' ') a = int(a) b = int(b) l = b - a + 1 one = p[b] - p[a - 1] v = (pow(2, l, M) - pow(2, l - one, M) + M) % M ans.append(str(v)) ans.append("\n") sys.stdout.writelines(ans)
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int mod = 1e9 + 7; long long qpow(long long a, long long b) { if (b < 0) return 0; long long ret = 1; a %= mod; while (b) { if (b & 1) ret = (ret * a) % mod; b >>= 1; a = (a * a) % mod; } return ret; } char num[10000001]; int a[1000001][3]; int main() { int n, q; cin >> n >> q >> num; for (int i = 0; i < n; i++) { if (num[i] == '0') { a[i + 1][0] = (a[i][0] + 1) % mod; a[i + 1][1] = a[i][1]; } else { a[i + 1][1] = (a[i][1] + 1) % mod; a[i + 1][0] = a[i][0]; } } while (q--) { int u, v; scanf("%d%d", &u, &v); long long T1, T2; int num1 = a[v][1] - a[u - 1][1]; T1 = qpow(2, num1) - 1; int num0 = a[v][0] - a[u - 1][0]; T2 = qpow(2, num0) - 1; T2 = (T2 * T1) % mod; cout << (T1 + T2) % mod << endl; } }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import sys input=sys.stdin.readline n,q=map(int,input().split()) s=list(input().rstrip()) mod=10**9+7 for i in range(n): s[i]=int(s[i]) cnt=[0]*(n+1) for i in range(n): if s[i]==1: cnt[i+1]+=1 for i in range(1,n+1): cnt[i]+=cnt[i-1] p=[0]*(10**6+1) p[0]=1 for i in range(1,10**6+1): p[i]=(p[i-1]*2)%mod for _ in range(q): l,r=map(int,input().split()) cnt1=cnt[r]-cnt[l-1] cnt0=r-l+1-cnt1 ans=(p[cnt1]-1+(p[cnt1]-1)*(p[cnt0]-1))%mod print(ans)
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
n,q = list(map(int, input().split())) a = input() Q = [] for _ in range(q): Q.append(list(map(int, input().split()))) d = [0] ab = 0 for i in a: if i == '1': ab += 1 d.append(ab) mod = int(1e9 + 7) p = [1] i = 1 for _ in range(n): i = (i*2)%mod p.append(i) for l,r in Q: y = r-l + 1 x = d[r] - d[l-1] y -= x print(((p[x]-1)*p[y])%mod)
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import sys r = sys.stdin.readlines() M = 10 ** 9 + 7 n, q = r[0].strip().split() n = int(n) q = int(q) s = r[1] p = [0] k = 0 for i in range(n): d = int(s[i]) k += (1 - d) p.append(k) ans = [] for k in range(q): a, b = r[k + 2].strip().split() a = int(a) b = int(b) l = b - a + 1 zero = p[b] - p[a - 1] ans.append(str((pow(2, l, M) - pow(2, zero, M) + M) % M)) sys.stdout.write("\n".join(ans))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
//package ; import java.io.*; import java.util.*; public class C { static int freq[][],n; public static void main(String[] args) throws IOException { Scanner sc = new Scanner(); PrintWriter pw = new PrintWriter(System.out); n=sc.nextInt();int q=sc.nextInt(); freq=new int[2][n]; char c[]=sc.nextLine().toCharArray(); for(int i=0;i<n;i++) { if(i==0) { if(c[i]=='0') freq[0][i]=1; else freq[1][i]=1; } else { if( c[i]=='0') { freq[0][i]=freq[0][i-1]+1; freq[1][i]=freq[1][i-1]; } else { freq[0][i]=freq[0][i-1]; freq[1][i]=freq[1][i-1]+1; } } } while(q-->0) { int l=sc.nextInt()-1,r=sc.nextInt()-1; long ans; if(l==0) { int ones=freq[1][r]; int zero=freq[0][r]; long sum_1=pow_mod(2, ones,mod)-1; long sum_z=(sum_1*(pow_mod(2, zero,mod)-1))%mod; ans=sum_1+sum_z; } else { int ones=freq[1][r]-freq[1][l-1]; int zero=freq[0][r]-freq[0][l-1]; long sum_1=pow_mod(2, ones,mod)-1; long sum_z=(sum_1*(pow_mod(2, zero,mod)-1))%mod; ans=sum_1+sum_z; } pw.println(ans%mod); } pw.close(); } public static long pow_mod(long b,long p,long m)//O(log(p)) { long res=1; while(p>0) { if(p%2==1) res=res*b%m; b=b*b%m; p/=2; } return res; } static long mod=(long)1e9+7; static class Scanner { BufferedReader br; StringTokenizer st; Scanner() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() throws IOException { while (st == null || !st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } int nextInt() throws IOException { return Integer.parseInt(next()); } long nextLong() throws IOException { return Long.parseLong(next()); } double nextDouble() throws IOException { return Double.parseDouble(next()); } String nextLine() throws IOException { return br.readLine(); } boolean hasnext() throws IOException{ return br.ready(); } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.util.*; import java.lang.*; import java.math.*; import java.io.*; import static java.lang.Math.*; /* spar5h */ public class cf3 implements Runnable { public void run() { InputReader s = new InputReader(System.in); PrintWriter w = new PrintWriter(System.out); int n = s.nextInt(), q = s.nextInt(); char[] a = s.next().toCharArray(); int[] dp = new int[n + 1]; for(int i = 1; i <= n; i++) { dp[i] = dp[i - 1] + a[i - 1] - '0'; } long mod = (long)1e9 + 7; long[] pow2 = new long[n + 1]; pow2[0] = 1; for(int i = 1; i <= n; i++) pow2[i] = pow2[i - 1] * 2 % mod; while(q-- > 0) { int l = s.nextInt(), r = s.nextInt(); int x = dp[r] - dp[l - 1]; int y = r - l + 1 - x; long res = (pow2[x] - 1 + mod) % mod; long res2 = (((pow2[x] - 1 + mod) % mod) * ((pow2[y] - 1 + mod) % mod)) % mod; w.println((res + res2) % mod); } w.close(); } static class InputReader { private InputStream stream; private byte[] buf = new byte[1024]; private int curChar; private int numChars; private SpaceCharFilter filter; public InputReader(InputStream stream) { this.stream = stream; } public int read() { if (numChars==-1) throw new InputMismatchException(); if (curChar >= numChars) { curChar = 0; try { numChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if(numChars <= 0) return -1; } return buf[curChar++]; } public String nextLine() { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } public int nextInt() { int c = read(); while(isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } int res = 0; do { if(c<'0'||c>'9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public long nextLong() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public double nextDouble() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } double res = 0; while (!isSpaceChar(c) && c != '.') { if (c == 'e' || c == 'E') return res * Math.pow(10, nextInt()); if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } if (c == '.') { c = read(); double m = 1; while (!isSpaceChar(c)) { if (c == 'e' || c == 'E') return res * Math.pow(10, nextInt()); if (c < '0' || c > '9') throw new InputMismatchException(); m /= 10; res += (c - '0') * m; c = read(); } } return res * sgn; } public String readString() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } public boolean isSpaceChar(int c) { if (filter != null) return filter.isSpaceChar(c); return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public String next() { return readString(); } public interface SpaceCharFilter { public boolean isSpaceChar(int ch); } } public static void main(String args[]) throws Exception { new Thread(null, new cf3(),"cf3",1<<26).start(); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; vector<long long> tt; void pre() { tt.push_back(0); long long temp = 0; for (int i = 1; i <= 100005; i++) { temp += tt[i - 1] + 1; temp %= 1000000007; tt.push_back(temp); } } long long power(long long x, long long y) { long long res = 1; while (y > 0) { if (y & 1) res = (res * x) % 1000000007; y = y >> 1; x = (x * x) % 1000000007; } return res; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n, q; cin >> n >> q; string s; cin >> s; int prefix[s.length() + 1]; memset(prefix, 0, sizeof(prefix)); for (int i = 0; i < s.length(); i++) { prefix[i + 1] = prefix[i]; if (s[i] == '1') prefix[i + 1] += 1; } pre(); for (int i = 0; i < q; i++) { int l, r; cin >> l >> r; int ones = prefix[r] - prefix[l - 1]; int zeros = (r - l + 1) - ones; long long ans = 0; ans += tt[ones]; if (zeros >= 1) { long long temp = (tt[ones] * (power(2, zeros) - 1)) % 1000000007; ans = (ans + temp) % 1000000007; } cout << ans << "\n"; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const long long mod = 1e9 + 7; const int maxm = 1e5 + 10; long long ar[maxm], data[maxm]; char cr[maxm]; long long quik(long long a, long long b) { long long sum = 1; while (b) { if (b & 1) { sum = (sum * a) % mod; } a = a % mod; a = (a * a) % mod; b /= 2; } return sum; } int main() { long long n, q, i, j, k, l, r, sum, ans1, ans0, a, b; scanf("%lld%lld", &n, &q); scanf("%s", cr + 1); for (i = 1; i <= n; i++) { ar[i] = cr[i] - '0'; } for (i = 1; i <= n; i++) { data[i] = data[i - 1] + ar[i]; } while (q--) { scanf("%lld%lld", &l, &r); ans1 = data[r] - data[l - 1]; ans0 = r - l + 1 - ans1; a = (quik(2, ans1) - 1) % mod; b = (quik(2, ans0) - 1) % mod; b = (a * b) % mod; printf("%lld\n", (a + b) % mod); } }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int inf = INT_MAX; const long long int INF = LLONG_MAX; const long long int mod = 1e9 + 7; long long int powfast(long long int x, long long int y) { long long int res = 1; while (y > 0) { if (y & 1) res = (res * x) % mod; y = y >> 1; x = (x * x) % mod; } return res % mod; } int main() { ios_base::sync_with_stdio(false), cin.tie(NULL), cout.tie(NULL); long long int n, q; cin >> n >> q; string s; cin >> s; vector<long long int> a(n + 1, 0); for (long long int i = 0; i <= n - 1; i++) { if (s[i] == '1') a[i + 1] = a[i] + 1; else a[i + 1] = a[i]; } for (long long int i = 0; i <= q - 1; i++) { long long int l, r; cin >> l >> r; long long int nos1 = a[r] - a[l - 1]; long long int nos0 = r - l - nos1 + 1; long long int ans = (powfast(2, nos0) * (powfast(2, nos1) - 1)) % mod; cout << ans << endl; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const double PI = acos(-1.0); const double eps = 1e-8; const int inf = 1000000000; const long long infLL = 1000000000000000000; long long MOD = 1000000000; inline bool checkbit(long long n, int i) { return n & (1LL << i); } inline long long setbit(long long n, int i) { return n | (1LL << i); } inline long long resetbit(long long n, int i) { return n & (~(1LL << i)); } inline bool EQ(double a, double b) { return fabs(a - b) < 1e-9; } inline bool isLeapYear(long long year) { return (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0); } inline bool isInside(pair<int, int> p, long long n, long long m) { return (p.first >= 0 && p.first < n && p.second >= 0 && p.second < m); } inline bool isInside(pair<int, int> p, long long n) { return (p.first >= 0 && p.first < n && p.second >= 0 && p.second <= n); } inline bool isSquare(long long x) { long long s = sqrt(x); return (s * s == x); } inline bool isFib(long long x) { return isSquare(5 * x * x + 4) || isSquare(5 * x * x - 4); } inline bool isPowerOfTwo(long long x) { return (x && !(x & (x - 1))); } inline void normal(long long &a, long long MOD) { a %= MOD; (a < 0) && (a += MOD); } inline long long modMul(long long a, long long b, long long MOD) { a %= MOD, b %= MOD; normal(a, MOD), normal(b, MOD); return (a * b) % MOD; } inline long long modAdd(long long a, long long b, long long MOD) { a %= MOD, b %= MOD; normal(a, MOD), normal(b, MOD); return (a + b) % MOD; } inline long long modSub(long long a, long long b, long long MOD) { a %= MOD, b %= MOD; normal(a, MOD), normal(b, MOD); a -= b; normal(a, MOD); return a; } inline long long modPow(long long b, long long p, long long MOD) { long long r = 1; while (p) { if (p & 1) r = modMul(r, b, MOD); b = modMul(b, b, MOD); p >>= 1; } return r; } inline long long modInverse(long long a, long long MOD) { return modPow(a, MOD - 2, MOD); } inline long long modDiv(long long a, long long b, long long MOD) { return modMul(a, modInverse(b, MOD), MOD); } struct func { bool operator()(pair<int, int> const &a, pair<int, int> const &b) { if (a.first == b.first) { return (a.second < b.second); } return (a.first < b.first); } }; long long a[100005], one[100005], zero[100005], pw[100005], oo, zz, n, q, x, y; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); ; string s; cin >> n >> q >> s; for (int i = 1; i <= n; ++i) { a[i] = s[i - 1] - '0'; if (a[i] == 1LL) { one[i] = 1; } else { zero[i] = 1; } one[i] += one[i - 1]; zero[i] += zero[i - 1]; } pw[0] = 1LL; for (int i = 1; i <= 100005; ++i) { pw[i] = (pw[i - 1] * 2LL) % 1000000007; } for (int i = 1; i <= q; ++i) { cin >> x >> y; oo = one[y] - one[x - 1]; zz = zero[y] - zero[x - 1]; long long ooo = pw[oo] - 1; long long zzz = pw[zz]; long long ans = modMul(ooo, zzz, 1000000007); cout << ans << '\n'; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import sys r = sys.stdin.readlines() M = 10 ** 9 + 7 n, q = map(int, r[0].strip().split()) s = r[1] p = [0] k = 0 for i in range(n): d = int(s[i]) k += d p.append(k) ans = [] for k in range(q): a, b = map(int, r[k + 2].strip().split()) l = b - a + 1 one = p[b] - p[a - 1] zero = l - one ans.append(str((pow(2, one + zero, M) - pow(2, zero, M) + M) % M)) sys.stdout.write("\n".join(ans))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import sys input = sys.stdin.readline out = sys.stdout MOD = 1000000007 def main(): n, q = map(int, input().split()) s = input() d = {} count_1 = 0 count_0 = 0 for i in range(n): if s[i] == '1': count_1 += 1 else: count_0 += 1 z = (count_1, count_0) d[i] = z for i in range(q): li, ri = map(int, input().split()) li -= 1 ri -= 1 if li == 0: answer = (pow(2, d[ri][0], MOD) - 1)*(pow(2, d[ri][1], MOD)) else: answer = (pow(2, d[ri][0]-d[li-1][0], MOD) - 1)*(pow(2, d[ri][1]-d[li-1][1], MOD)) out.write(str(answer % MOD) + '\n') if __name__=="__main__": main()
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
n, q = map(int, raw_input().split()) s = raw_input() p = [0] * (1 + len(s)) for i, _s in enumerate(s): if _s == '1': p[i+1] = p[i] + 1 else: p[i+1] = p[i] MOD = 10**9 + 7 #print "prefix", p out = [] for i in range(q): l, r = map(int, raw_input().split()) ones = p[r] - p[l-1] zeros = r + 1 - l - ones s = pow(2, ones, MOD) - 1 answer = s + s * (pow(2, zeros, MOD) - 1) out.append((answer + MOD) % MOD) print "\n".join(map(str, out))
PYTHON
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int maxn = 100100; const int mod = 1e9 + 7; char s[maxn]; int c[maxn], f[maxn]; inline int read() { int x = 0, t = 1; char ch = getchar(); while ((ch < '0' || ch > '9') && ch != '-') ch = getchar(); if (ch == '-') t = -1, ch = getchar(); while (ch <= '9' && ch >= '0') x = x * 10 + ch - 48, ch = getchar(); return x * t; } int n, q; int main() { n = read(), q = read(); scanf("%s", s + 1); f[0] = 1; for (int i = 1; i <= n; i++) { c[i] = c[i - 1] + (s[i] == '1'); f[i] = f[i - 1] * 2ll % mod; } for (int k = 1; k <= q; k++) { int l, r; l = read(), r = read(); int o = c[r] - c[l - 1]; int ans = (f[o] + mod - 1ll) % mod * f[r - l + 1 - o] % mod; printf("%d\n", ans); } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; int one[100007], zero[100007]; const int mod = 1e9 + 7; long long FastPow(long long x, long long n, long long mod) { long long s = 1; while (n) { if (n & 1) s = s * x % mod; x = x * x % mod; n >>= 1; } return s % mod; } int main() { int n, q; cin >> n >> q; string s; cin >> s; for (int i = 0; i < s.length(); i++) { if (i > 0) { zero[i + 1] = zero[i]; one[i + 1] = one[i]; } if (s[i] == '0') { zero[i + 1]++; } else { one[i + 1]++; } } while (q--) { int l, r; cin >> l >> r; long long ans = (FastPow(2, one[r] - one[l - 1], mod) - 1 + mod) % mod * FastPow(2, zero[r] - zero[l - 1], mod) % mod; cout << ans << endl; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; const int N = 1e6 + 9; const long long int mod = 1e9 + 7; vector<long long int> v[N]; map<long long int, long long int> mpp; set<long long int> st; long long int b[N], a[N]; void pre() { b[0] = 1; for (int i = 1; i <= N - 6; ++i) b[i] = (b[i - 1] * 2) % mod; for (int i = 1; i <= N - 6; ++i) b[i] += b[i - 1]; } void solve() { long long int n, q; cin >> n >> q; pre(); string s; cin >> s; for (int i = 0; i <= s.size() - 1; ++i) { a[i + 1] = s[i] - 48; a[i + 1] += a[i]; } while (q--) { long long int l, r; cin >> l >> r; long long int d = a[r] - a[l - 1]; long long int p = r - l + 1; cout << (b[p - 1] - b[p - d - 1] + mod) % mod << '\n'; } } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); long long int t = 1; while (t--) solve(); }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
from sys import * mod=1000000007 n,q=map(int,stdin.readline().split()) s=str(stdin.readline()) arr=[] count=0 for i in s: if(i=='1'): count+=1 arr.append(count) #q=int(input()) ansarr=[] for i in range(q): x,y=map(int,input().split()) if(x==1): total1=arr[y-1] else: total1=arr[y-1]-arr[x-2] total0=(y-x+1-total1) ans=pow(2,y-x+1,mod)%mod ans=((((ans%mod)-(pow(2,total0,mod)%mod))%mod)+mod)%mod ansarr.append(ans) stdout.write('\n'.join(map(str, ansarr)))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import sys import math input=sys.stdin.readline n,q=map(int,input().split()) s=input() zero=[] one=[] cz=0 c1=0 for i in range(n): if(s[i]=='0'): cz+=1 zero.append(cz) one.append(c1) else: c1+=1 zero.append(cz) one.append(c1) one=[0]+one zero=[0]+zero for i in range(q): l,r=map(int,input().split()) l-=1 p=one[r]-one[l] sum=(pow(2,p,10**9+7)-1) z=zero[r]-zero[l] a=sum*(pow(2,z,10**9+7)-1) print((sum+a)%(10**9+7))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
/* package codechef; // don't place package name! */ import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ public class Codechef { static class Input { private StringTokenizer tokenizer = null; private BufferedReader reader; public Input(InputStream inputStream) { reader = new BufferedReader(new InputStreamReader(inputStream)); } public String nextLine() { try { return reader.readLine(); } catch (IOException e) { throw new RuntimeException(); } } public String next() { while (tokenizer == null || !tokenizer.hasMoreTokens()) { tokenizer = new StringTokenizer(nextLine()); } return tokenizer.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public int[] nextIntArray(int n, int add) { int[] result = new int[n]; for (int i = 0; i < n; i++) { result[i] = nextInt() + add; } return result; } public long[] nextLongArray(int n, long add) { long[] result = new long[n]; for (int i = 0; i < n; i++) { result[i] = nextLong() + add; } return result; } public int[] nextIntArray(int n) { return nextIntArray(n, 0); } } static long powmod(long a,long b) { long mod=1000000007; long ans=1; while(b>0) { if((b&1)==1) ans=(ans*a)%mod; b=b/2; a=(a*a)%mod; } return ans; } public static void main (String[] args) throws java.lang.Exception { Input s=new Input(System.in); int t=1; long mod=1000000007; while(t-->0) { int n=s.nextInt(); int q=s.nextInt(); String st=s.next(); int a[]=new int[n+1]; for(int i=0;i<n;i++) { a[i+1]=a[i]+(st.charAt(i)=='1'?1:0); } while(q-->0) { int l=s.nextInt()-1; int r=s.nextInt()-1; int cnt=0; System.out.println(((powmod(2,a[r+1]-a[l])+mod-1)%mod * powmod(2,r-l+1-a[r+1]+a[l]))%mod); } } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.util.Scanner; public class Main { static long mod = 1000000007; static long getPow(long n, long mod){ if(n == 0) return 1 % mod; if(n == 1) return 2 % mod; long res = getPow(n / 2, mod); if(n % 2 == 0) return (res * res) % mod; else return (res * res * 2) % mod; } public static void main(String[] arg) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int m = scanner.nextInt(); String str = scanner.next(); int[] array = new int[n + 1]; for(int i = 0; i < n; i++) array[i + 1] = array[i] + (str.charAt(i) == '0'? 0: 1); StringBuilder res = new StringBuilder(); for(int i = 0; i < m; i++){ int l = scanner.nextInt(); int r = scanner.nextInt(); int oneCount = array[r] - array[l - 1]; int zeroCount = r - l + 1 - oneCount; long subRes1 = getPow(oneCount, mod) - 1; long subRes0 = (subRes1 * (getPow(zeroCount, mod) - 1)) % mod; res.append((subRes1 + subRes0) % mod + "\n"); } System.out.println(res.toString()); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
from sys import stdout,stdin n,q=tuple(map(int,stdin.readline().split())) s=stdin.readline() mod=1000000007 powers=[1 for i in range(n+1)] for i in range(1,n+1): powers[i]=powers[i-1]+powers[i-1] if powers[i]>=mod: powers[i]-=mod cum=[0 for i in range(n+1)] for i in range(n): if s[i]=='0': cum[i+1]=cum[i]+1 else: cum[i+1]=cum[i] while q: l,r=tuple(map(int,stdin.readline().split(' '))) lent=r-l+1 zeroes=cum[r]-cum[l-1] stdout.write(str((powers[zeroes]*(powers[lent-zeroes]-1+mod))%mod)+"\n") q-=1
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; int n, q, pref[100010]; char c[100010]; const int MOD = 1e9 + 7; int fp(int a, int b) { if (b == 0) return 1; long long temp = fp(a, b / 2); temp *= temp; temp %= MOD; if (b & 1) return (temp * a) % MOD; else return temp; } int main() { scanf("%d %d", &n, &q); pref[0] = 0; for (int i = 1; i <= n; i++) { scanf(" %c", &c[i]); if (c[i] == '1') pref[i]++; pref[i] += pref[i - 1]; } long long x; while (q--) { int l, r, now, a, b; scanf("%d %d", &l, &r); a = pref[r] - pref[l - 1]; b = r - l + 1 - a; x = fp(2, a) - 1; now = fp(2, a) - 1; x += ((long long)now * (fp(2, b) - 1)) % MOD; x %= MOD; printf("%lld\n", x); } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") using namespace std; const int maxn = 1e6 + 10, maxm = 2e6 + 10; const int INF = 0x3f3f3f3f; const long long mod = 1e9 + 7; const double PI = acos(-1.0); int casn, n, m, k; int num[maxn]; int cnt[maxn]; long long p = 1e9 + 7; long long gcd(long long a, long long b) { return b ? gcd(b, a % b) : a; } long long lcm(long long a, long long b) { return a * gcd(a, b) / b; } long long gcd_mod(long long a, long long b, long long c = p) { while (b) b = ((a % b) % c + ((a = b) - b) % c) % c; return a; } long long exgcd(long long a, long long b, long long &x, long long &y) { if (b == 0) return (x = 1, y = 0, a); if (a == 0) return (x = 0, y = 1, b); long long r = exgcd(b, a % b, y, x); y -= (a / b) * x; return r; } long long lcm_mod(long long a, long long b, long long c = p) { return (a / gcd_mod(a, b) * b) % c; } long long pow_mod(long long a, long long b, long long c = p, long long ans = 1) { while (b) { if (b & 1) ans = (a * ans) % c; a = (a * a) % c, b >>= 1; } return ans; } long long inv_mod(long long a, long long b = p) { return pow_mod(a, b - 2); } long long inv_gcd(long long a, long long b = p) { long long x, y; exgcd(a, b, x, y); x %= b; while (x < 0) x += b; return x; } long long mul_mod(long long a, long long b, long long c = p) { if (a < b) swap(a, b); long long res = 0; while (b) { if (b & 1) res = (res + a) % n; a = (a + a) % n; b >>= 1; } return res; } long long pow_mul_mod(long long a, long long b, long long n = p) { long long res = 1; while (b) { if (b & 1) res = mul_mod(res, a, n); a = mul_mod(a, a, n); b >>= 1; } return res; } int main() { ios::sync_with_stdio(false); ; cin >> n >> m; string s; cin >> s; for (int i = 1; i <= n; ++i) { cnt[i] = cnt[i - 1] + (s[i - 1] == '1'); } while (m--) { int a, b; long long ans = 0; cin >> a >> b; if (cnt[b] - cnt[a - 1] == 0) { cout << 0 << '\n'; continue; } long long xx = cnt[b] - cnt[a - 1]; ans += pow_mod(2, xx) - 1; if (ans == -1) ans = mod - 1; if (b - a + 1 != xx) { ans += (ans * (pow_mod(2, b - a + 1 - xx)) - ans + mod) % mod; } ans %= mod; cout << ans << '\n'; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; long long l, r, n, q, p[200000], a[200000], k, m, mod = 1e9 + 7; string s; int main() { cin >> n >> q >> s; for (int i = 0; i < n; i++) { a[i + 1] += a[i]; if (s[i] == '1') a[i + 1]++; } p[0] = 1; for (int i = 1; i <= 1e5; i++) p[i] = (p[i - 1] * 2) % mod; for (int i = 0; i < q; i++) { cin >> l >> r; cout << (p[r - l + 1] - p[r - l + 1 - a[r] + a[l - 1]] + mod) % mod << endl; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> const long long md = 1e9 + 7; const int Inf = 1e9; const long long Inf64 = 1e18; const long long MaxN = 2e5 + 10; const long long MaxM = 11; const long double eps = 1e-15; const long long dx[4] = {0, 1, 0, -1}; const long long dy[4] = {1, 0, -1, 0}; const long long ddx[4] = {1, 1, -1, -1}; const long long ddy[4] = {1, -1, 1, -1}; const long double Pi = acos(-1); using namespace std; long long gcd(long long a, long long b) { while (a) { b %= a; swap(a, b); } return b; } long long gcdex(long long a, long long mod = md) { long long g = mod, r = a, x = 0, y = 1; while (r != 0) { long long q = g / r; g %= r; swap(g, r); x -= q * y; swap(x, y); } return x < 0 ? x + mod : x; } long long binpow(long long a, long long n) { long long res = 1; while (n) { if (n & 1) { res *= a; res %= md; } a *= a; a %= md; n >>= 1; } return res % md; } signed main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cerr.tie(0); cout << fixed, cout.precision(10); vector<long long> St(1e5 + 1); St[0] = 1; for (int i = 1; i < 1e5 + 1; i++) { St[i] = St[i - 1] * 2; St[i] %= md; } long long N, Q; cin >> N >> Q; vector<pair<long long, long long> > Mt(N + 1); for (int i = 1; i <= N; i++) { char a; cin >> a; a -= '0'; Mt[i].first = Mt[i - 1].first; Mt[i].second = Mt[i - 1].second; if (a) { Mt[i].second++; } else Mt[i].first++; } for (int i = 0; i < Q; i++) { long long a, b; cin >> a >> b; long long K = St[Mt[b].second - Mt[a - 1].second]; K--; if (K < 0) K += md; K *= St[Mt[b].first - Mt[a - 1].first]; K %= md; cout << K << '\n'; } cerr << '\n' << "Time execute: " << clock() / (double)CLOCKS_PER_SEC << " sec" << '\n'; return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.util.StringTokenizer; public class Main { static final int mod = (int) (1e9 + 7); public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); PrintWriter out = new PrintWriter(System.out); int n = sc.nextInt(); int q = sc.nextInt(); char[] x = sc.next().toCharArray(); FenwickTree ft = new FenwickTree(n); for (int i = 1; i <= n; i++) ft.point_update(i, x[i - 1] - '0'); while (q-- > 0) { int i = sc.nextInt(); int j = sc.nextInt(); int ones = ft.rsq(i, j); int zeros = (j - i + 1) - ones; int ans = gs(1, 2, ones) % mod; ans += gs(ans, 2, zeros); out.println(ans % mod); } out.flush(); out.close(); } static int gs(int a, int r, int n) { int ans = (int) (1 - modPow(r, n, mod)) % mod; ans /= (1 - r); ans = (int) ((1l * a * ans) % mod); return ans % mod; } static int modPow(int a, int e, int mod) // O(log e) { a %= mod; long res = 1; while (e > 0) { if ((e & 1) == 1) res = (1l*res * a) % mod; a = (int) ((1l*a * a) % mod); e >>= 1; } return (int) (res%mod); } static class FenwickTree { // one-based DS int n; int[] ft; FenwickTree(int size) { n = size; ft = new int[n + 1]; } int rsq(int b) //O(log n) { int sum = 0; while (b > 0) { sum += ft[b]; b -= b & -b; } //min? return sum; } int rsq(int a, int b) { return rsq(b) - rsq(a - 1); } void point_update(int k, int val) //O(log n), update = increment { while (k <= n) { ft[k] += val; k += k & -k; } //min? } int point_query(int idx) // c * O(log n), c < 1 { int sum = ft[idx]; if (idx > 0) { int z = idx ^ (idx & -idx); --idx; while (idx != z) { sum -= ft[idx]; idx ^= idx & -idx; } } return sum; } void scale(int c) { for (int i = 1; i <= n; ++i) ft[i] *= c; } int findIndex(int cumFreq) { int msk = n; while ((msk & (msk - 1)) != 0) msk ^= msk & -msk; //msk will contain the MSB of n int idx = 0; while (msk != 0) { int tIdx = idx + msk; if (tIdx <= n && cumFreq >= ft[tIdx]) { idx = tIdx; cumFreq -= ft[tIdx]; } msk >>= 1; } if (cumFreq != 0) return -1; return idx; } } static class Scanner { BufferedReader br; StringTokenizer st; Scanner(InputStream system) { br = new BufferedReader(new InputStreamReader(system)); } String next() throws IOException { while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine()); return st.nextToken(); } int nextInt() throws IOException { return Integer.parseInt(next()); } double nextDouble() throws IOException { return Double.parseDouble(next()); } long nextLong() throws IOException { return Long.parseLong(next()); } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
from sys import * m = 1000000007 n, q = map(int, stdin.readline().split()) a = stdin.readline() ans = [] t = [] count = 0 for i in a: if i == '1': count+=1 t.append(count) for _ in range(q): x,y=map(int,input().split()) if(x==1): p=t[y-1] else: p=t[y-1]-t[x-2] q=(y-x+1-p) s=pow(2,p+q,m)%m s=(s%m) - (pow(2,q,m)%m) ans.append(s%m) stdout.write('\n'.join(map(str, ans)))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.ArrayList; import java.util.InputMismatchException; import java.util.TreeMap; import java.util.TreeSet; public class Solution1 implements Runnable { static final long MOD = 1000000007; static class InputReader { private InputStream stream; private byte[] buf = new byte[1024]; private int curChar; private int numChars; private SpaceCharFilter filter; private BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); public InputReader(InputStream stream) { this.stream = stream; } public int read() { if (numChars==-1) throw new InputMismatchException(); if (curChar >= numChars) { curChar = 0; try { numChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if(numChars <= 0) return -1; } return buf[curChar++]; } public String nextLine() { String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } public int nextInt() { int c = read(); while(isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } int res = 0; do { if(c<'0'||c>'9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public long nextLong() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } long res = 0; do { if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } while (!isSpaceChar(c)); return res * sgn; } public double nextDouble() { int c = read(); while (isSpaceChar(c)) c = read(); int sgn = 1; if (c == '-') { sgn = -1; c = read(); } double res = 0; while (!isSpaceChar(c) && c != '.') { if (c == 'e' || c == 'E') return res * Math.pow(10, nextInt()); if (c < '0' || c > '9') throw new InputMismatchException(); res *= 10; res += c - '0'; c = read(); } if (c == '.') { c = read(); double m = 1; while (!isSpaceChar(c)) { if (c == 'e' || c == 'E') return res * Math.pow(10, nextInt()); if (c < '0' || c > '9') throw new InputMismatchException(); m /= 10; res += (c - '0') * m; c = read(); } } return res * sgn; } public String readString() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } public boolean isSpaceChar(int c) { if (filter != null) return filter.isSpaceChar(c); return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } public String next() { return readString(); } public interface SpaceCharFilter { public boolean isSpaceChar(int ch); } } public static void main(String args[]) throws Exception { new Thread(null, new Solution1(),"Solution",1<<26).start(); } static long gcd(long a, long b) { if (b == 0) return a; return gcd(b, a % b); } static long lcm(long a,long b) { return (a*b)/gcd(a,b); } ArrayList<Integer> adj[]; public void run() { InputReader sc = new InputReader(System.in); PrintWriter w = new PrintWriter(System.out); sieve(); int n =sc.nextInt(); int q = sc.nextInt(); char[] ch = sc.next().toCharArray(); long[] prefix= new long[n+1]; for(int i = 1;i <= ch.length;i++){ if(ch[i-1] == '1') { prefix[i] = prefix[i-1] + 1; }else { prefix[i] = prefix[i-1]; } } for(int i = 0;i < q;i++) { int l = sc.nextInt(); int r = sc.nextInt(); long cnt = prefix[r] - prefix[l-1]; long count = (r - l + 1); long one = power(2,count,MOD); long two = power(2,cnt,MOD); long three = (two - 1 + MOD) % MOD; long four = (power(two,MOD-2,MOD) * three) % MOD; long fans = (one * four) % MOD; w.println(fans); } w.close(); } static final int MAXN = 1000001; // stores smallest prime factor for every number static int spf[] = new int[MAXN]; // Calculating SPF (Smallest Prime Factor) for every // number till MAXN. // Time Complexity : O(nloglogn) static void sieve() { spf[1] = 1; for (int i=2; i<MAXN; i++) // marking smallest prime factor for every // number to be itself. spf[i] = i; // separately marking spf for every even // number as 2 for (int i=4; i<MAXN; i+=2) spf[i] = 2; for (int i=3; i*i<MAXN; i++) { // checking if i is prime if (spf[i] == i) { // marking SPF for all numbers divisible by i for (int j=i*i; j<MAXN; j+=i) // marking spf[j] if it is not // previously marked if (spf[j]==j) spf[j] = i; } } } long one = 1; long two = 0; // A O(log n) function returning primefactorization // by dividing by smallest prime factor at every step void getFactorization(int x) { TreeMap<Integer,Integer> tmap = new TreeMap(); while (x != 1) { if(tmap.containsKey(spf[x])) { tmap.put(spf[x],tmap.get(spf[x]) + 1); } else { tmap.put(spf[x],1); } x = x / spf[x]; } TreeSet<Integer> toCalc = new TreeSet(); for(Integer key: tmap.keySet()) { one = one * key; two = Math.max(two,tmap.get(key)); toCalc.add(tmap.get(key)); } if(two == 1) { two = 0; } else if(two % 2 == 0) { int count = 0; if(toCalc.size() == 1) { int most = Integer.highestOneBit((int) two); if(most != two) { two = (Integer.highestOneBit((int) two) * 2); count++; }else { } }else { count++; int most = Integer.highestOneBit((int) two); if(most != two) { two = (Integer.highestOneBit((int) two) * 2); }else { } } while(two != 1) { two = two/2; count++; } two = count; }else { two = (Integer.highestOneBit((int) two) * 2); int count = 0; while(two != 1) { two = two/2; count++; } count++; two = count; } } long[] fact = new long[100005]; long nCr(int n,int r){ long tmp1 = (fact[r] * fact[n-r]) % MOD; tmp1 = power(tmp1,MOD-2,MOD); long tmp2 = (fact[n] * tmp1) % MOD; return tmp2; } static long power(long a,long b,long mod) { long ans = 1; a = a % mod; while(b != 0) { if(b % 2 == 1) { ans = (ans * a) % mod; } a = (a * a) % mod; b = b/2; } return ans; } void pre() { fact[0] = 1; for(int i = 1;i < 100005;i++) { fact[i] = (fact[i-1] * i) % MOD; } } class Pair implements Comparable<Pair>{ int a; int b; Pair(int a,int b){ this.b = b; this.a = a; } public boolean equals(Object o) { Pair p = (Pair)o; return this.a == p.a && this.b == this.b; } public int hashCode(){ return Long.hashCode(a)*27 + Long.hashCode(b)*31; } public int compareTo(Pair p) { return Long.compare(this.a,p.a); } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
from sys import stdin, stdout MOD = 10**9+7 n, q = list(map(int, stdin.readline().strip().split())) s = list(map(int, list(stdin.readline().strip()))) cf = {0:0} for i in range(1, n+1): cf[i] = cf[i-1]+s[i-1] # print(i, cf[i]) for _ in range(q): l, r = list(map(int, stdin.readline().strip().split())) cv = cf[r] - cf[l-1] if cv: h = 0 lenv = r-l+1-cv # print(f'l:{l}, r:{r}, cf[r]:{cf[r]}, cf[l-1]:{cf[l-1]}, cv:{cv}, lenv:{lenv}') h += pow(2, cv, MOD) - 1 h += ((pow(2, lenv, MOD) - 1)*h) % MOD h %= MOD stdout.write('{}\n'.format(h)) else: stdout.write('0\n')
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import itertools as it import sys MOD = 10 ** 9 + 7 n, q = map(int, next(sys.stdin).split()) s = [0] + list(it.accumulate(map(int, next(sys.stdin).strip()))) pow2 = [1] for _ in range(1, n + 1): pow2.append((pow2[-1] << 1) % MOD) ans = [] for _ in range(q): l, r = map(int, next(sys.stdin).split()) ones = s[r] - s[l - 1] ans.append(str((pow2[r - l - ones + 1] * (pow2[ones] - 1)) % MOD)) print('\n'.join(ans))
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.util.*; public class segment_tree{ static int max = (int)1e5+5; static int[] a = new int[2*max]; static long mod = (long)1e9+7; static void build(int n){ for(int i=n-1;i>0;i--)a[i] = a[i<<1]+a[i<<1|1]; } static int query(int l,int r,int n){ int res = 0; for(l = l+n,r = r+n;l<r;l>>=1,r>>=1){ if((l&1)==1)res+=a[l++]; if((r&1)==1)res+=a[--r]; } return res; } public static void main(String[] args){ Scanner in = new Scanner(System.in); int n = in.nextInt(), q = in.nextInt(); String s = in.next(); for(int i=0;i<n;i++)a[i+1] = (s.charAt(i)-'0')+a[i]; // build(n); long[] p =new long[n+1]; p[0] = 1L; for(int i=1;i<=n;i++)p[i] = (2L*p[i-1])%mod; //System.out.println(p[n]); while(q-->0){ int l = in.nextInt(),r = in.nextInt(); int n1 = a[r]-a[l-1];//query(l-1,r,n); //System.out.println((p[r-l+1]*(p[n1]-1L))/p[n1]); System.out.println(((p[n1]-1)*p[r-l+1-n1])%mod); } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.lang.*; import java.math.*; import java.util.*; import java.io.*; public class Main { void solve() { int n=ni(),q=ni(); char s[]=ns().toCharArray(); long pow[]=new long[n+2]; pow[0]=1; for(int i=1;i<=n+1;i++) pow[i]=mul(pow[i-1],2); int pref[]=new int[n+1]; for(int i=1;i<=n;i++) { pref[i]=pref[i-1]+s[i-1]-'0'; } while(q-->0){ int l=ni(),r=ni(); int ones=pref[r]-pref[l-1],zeros=r-l+1-ones; if(ones==0){ pw.println("0"); continue; } long p=sub(pow[ones],1); long ans=p; ans=add(ans,mul(sub(pow[zeros],1),p)); pw.println(ans); } } long get(long n){ n*=(n+1); n/=2; n%=M; return n; } long sub(long a,long b){ a-=b; if(a<0) a+=M; return a; } long add(long a,long b){ a+=b; if(a>=M) a-=M; return a; } long mul(long a,long b){ a*=b; if(a>=M) a%=M; return a; } long M =(long)1e9+7; InputStream is; PrintWriter pw; String INPUT = ""; void run() throws Exception { is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes()); pw = new PrintWriter(System.out); long s = System.currentTimeMillis(); solve(); pw.flush(); if (!INPUT.isEmpty()) tr(System.currentTimeMillis() - s + "ms"); } public static void main(String[] args) throws Exception { new Main().run(); } private byte[] inbuf = new byte[1024]; public int lenbuf = 0, ptrbuf = 0; private int readByte() { if (lenbuf == -1) throw new InputMismatchException(); if (ptrbuf >= lenbuf) { ptrbuf = 0; try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); } if (lenbuf <= 0) return -1; } return inbuf[ptrbuf++]; } private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); } private int skip() { int b; while ((b = readByte()) != -1 && isSpaceChar(b)) ; return b; } private double nd() { return Double.parseDouble(ns()); } private char nc() { return (char) skip(); } private String ns() { int b = skip(); StringBuilder sb = new StringBuilder(); while (!(isSpaceChar(b))) { // when nextLine, (isSpaceChar(b) && b != ' ') sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } private char[] ns(int n) { char[] buf = new char[n]; int b = skip(), p = 0; while (p < n && !(isSpaceChar(b))) { buf[p++] = (char) b; b = readByte(); } return n == p ? buf : Arrays.copyOf(buf, p); } private char[][] nm(int n, int m) { char[][] map = new char[n][]; for (int i = 0; i < n; i++) map[i] = ns(m); return map; } private int[] na(int n) { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = ni(); return a; } private int ni() { int num = 0, b; boolean minus = false; while ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-')) ; if (b == '-') { minus = true; b = readByte(); } while (true) { if (b >= '0' && b <= '9') { num = num * 10 + (b - '0'); } else { return minus ? -num : num; } b = readByte(); } } private long nl() { long num = 0; int b; boolean minus = false; while ((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-')) ; if (b == '-') { minus = true; b = readByte(); } while (true) { if (b >= '0' && b <= '9') { num = num * 10 + (b - '0'); } else { return minus ? -num : num; } b = readByte(); } } private boolean oj = System.getProperty("ONLINE_JUDGE") != null; private void tr(Object... o) { if (INPUT.length() > 0) System.out.println(Arrays.deepToString(o)); } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
from collections import defaultdict, deque, Counter from sys import stdin, stdout from heapq import heappush, heappop import math import io import os import math import bisect #?############################################################ def gcd(a,b): if a == 0: return b return gcd(b % a, a) def lcm(a,b): return (a // gcd(a,b))* b def isPrime(x): for i in range(2, x): if i*i > x: break if (x % i == 0): return False return True #?############################################################ def ncr(n, r, p): num = den = 1 for i in range(r): num = (num * (n - i)) % p den = (den * (i + 1)) % p return (num * pow(den, p - 2, p)) % p #?############################################################ def primeFactors(n): l = [] while n % 2 == 0: l.append(2) n = n / 2 for i in range(3, int(math.sqrt(n))+1, 2): while n % i == 0: l.append(int(i)) n = n / i if n > 2: l.append(n) return list(set(l)) #?############################################################ def power(x, y, p): res = 1 x = x % p if (x == 0): return 0 while (y > 0): if ((y & 1) == 1): res = (res * x) % p y = y >> 1 x = (x * x) % p return res #?############################################################ def sieve(n): prime = [True for i in range(n+1)] p = 2 while (p * p <= n): if (prime[p] == True): for i in range(p * p, n+1, p): prime[i] = False p += 1 return prime #?############################################################ def digits(n): c = 0 while (n > 0): n //= 10 c += 1 return c #?############################################################ def ceil(n, x): if (n % x == 0): return n//x return n//x+1 #?############################################################ def mapin(): return map(int, input().split()) #?############################################################ input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline # python3 15.py<i:n>op n, q = map(int, input().split()) s = list(input()) s =s[:-1] # print(s) # s = s[0:-1] nn = 1000000007 N = 1000003 l = [0]*N ll = [0]*(n+1) tt = 0 for i in range(n): if(s[i] == 48): tt+=1 ll[i+1] = tt # print(ll) temp = 1 for i in range(N): l[i] = temp%nn temp = temp+temp temp = temp%nn # print(l[0:116]) # print(ll)/ for i in range(q): a, b = map(int, input().split()) d = ll[b] - ll[a-1] c = b-a+1-d e = l[c]-1 f = l[d] print((e*f)%nn)
PYTHON3
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; string s; int ar[100005]; int ans[100005]; int anss[100005]; int main() { int n, q, i, l, r, j, a, b, x; ans[0] = 1; for (i = 1; i < 100005; i++) { ans[i] = (ans[i - 1] * 2) % 1000000007; } anss[0] = 1; for (i = 1; i < 100005; i++) { anss[i] = (anss[i - 1] + ans[i]) % 1000000007; } scanf("%d %d", &n, &q); cin >> s; ar[1] = s[0] - '0'; for (i = 2; i <= s.size(); i++) { ar[i] = ar[i - 1] + s[i - 1] - '0'; } for (i = 0; i < q; i++) { scanf("%d %d", &l, &r); a = ar[r] - ar[l - 1]; b = r - l + 1; b -= a; x = (anss[a + b - 1] - anss[b - 1] + 1000000007) % 1000000007; printf("%d\n", x); } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import javafx.util.Pair; import java.io.*; import java.math.*; import java.util.*; public class Main { public static void main(String[] args) throws IOException { PrintWriter out = new PrintWriter(System.out); Main mm = new Main(); mm.problemC(new Input(new BufferedReader(new InputStreamReader(System.in))), out); out.close(); } static void problemC(Input in, PrintWriter out) throws IOException { int n=in.nextInt(),q=in.nextInt(); int md=1000000007; //String s=in.next(); int[] ar=new int[n+1],pw=new int[n+1]; for (int i = 0; i < n; i++) { ar[i+1]=ar[i]+in.nextChar()-'0';//=='1'?1:0; } pw[0]=1; for (int i = 1; i <= n; i++) { pw[i]=(pw[i-1]<<1)%md; } for (int i = 0; i < q; i++) { int l=in.nextInt(),r=in.nextInt(); int o=0,m=r-l+1; o=ar[r]-ar[l-1]; int z=m-o; int res; res=(pw[m]-pw[z]+md)%md; out.println(res); } } static void problemB(Input in, PrintWriter out) throws IOException { int n=in.nextInt(),ans=1,mx=0; boolean bl=false; int pow=0; if(n==1) out.println("1 0"); else{ eratosfen e=new Main().new eratosfen(n); ArrayList<Integer> a=e.fillSieve(); for (int i = 0; n!=1; i++) { int b=a.get(i); int k=0; while (n%b==0){ n/=b; k++; } if(k!=0) { if(mx!=0&&k!=mx)bl=true; mx=Math.max(mx,k); ans*=b; } } int r=1; while(r<mx) { r*=2; pow++; } if(r!=mx||bl)pow++; out.print(ans);out.print(' ');out.println(pow); } } static void problemA(Input in, PrintWriter out) throws IOException { int n=in.nextInt(); int a=in.nextInt(),b=a,k=1,d=1,el=a,mx=0; for (int i = 1; i < n; i++) { a=in.nextInt(); if (a==b+1) { d++; if (d >= k) { k = d; el = a; } }else{ d = 1; if (k == b) { mx = b - 1; } } b=a; } if (b == k) { mx = k - 1; } mx=Math.max(mx,(el==1000)?d-1:0); mx=Math.max(mx,k-2); out.println(mx); } public class eratosfen { boolean[] primes; public eratosfen(int n) { primes=new boolean[n+1]; } public ArrayList<Integer> fillSieve() { ArrayList<Integer> a=new ArrayList<>(); Arrays.fill(primes, true); primes[0] = false; primes[1] = false; for (int i = 2; i < primes.length; ++i) { if (primes[i]) { for (int j = 2; i * j < primes.length; ++j) { primes[i * j] = false; } a.add(i); } } return a; } } static class Input { BufferedReader in; StringBuilder sb = new StringBuilder(); public Input(BufferedReader in) { this.in = in; } public Input(String s) { this.in = new BufferedReader(new StringReader(s)); } public String next() throws IOException { sb.setLength(0); while (true) { int c = in.read(); if (c == -1) { return null; } if (" \n\r\t".indexOf(c) == -1) { sb.append((char) c); break; } } while (true) { int c = in.read(); if (c == -1 || " \n\r\t".indexOf(c) != -1) { break; } sb.append((char) c); } return sb.toString(); } public char nextChar() throws IOException { while (true) { int c = in.read(); if (c == -1) { return (char)c; } if (" \n\r\t".indexOf(c) == -1) { return (char)c; } } } public int nextInt() throws IOException { return Integer.parseInt(next()); } public long nextLong() throws IOException { return Long.parseLong(next()); } public double nextDouble() throws IOException { return Double.parseDouble(next()); } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.*; import java.util.*; public class Main { public static void main(String args[]) { FastReader input=new FastReader(); PrintWriter out=new PrintWriter(System.out); int T=1; while(T-->0) { int n=input.nextInt(); int q=input.nextInt(); String s=input.next(); Pair p[]=new Pair[n]; int z=0,o=0; for(int i=0;i<n;i++) { if(s.charAt(i)=='1') { o++; } else { z++; } p[i]=new Pair(z,o); } for(int i=0;i<q;i++) { int l=input.nextInt(); int r=input.nextInt(); l--;r--; if(l==0) { z=p[r].zero; o=p[r].one; } else { z=p[r].zero-p[l-1].zero; o=p[r].one-p[l-1].one; } if(o==0) { out.println(0); } else { long m=1000000007; long s1=power(2,o,m); s1=(s1-1)%m; long f=power(2,o,m); f=(f-1)%m; long s2=power(2,z,m); s2=(s2-1)%m; s2=(s2*f)%m; s1=(s1+s2)%m; out.println(s1); } } } out.close(); } public static long power(long a,long b, long m) { long res=1; while(b>0) { if(b%2!=0) { res=(res%m*a%m)%m; } b=b/2; a=(a%m*a%m)%m; } return res; } static class Pair { int zero,one; public Pair(int zero,int one) { this.one=one; this.zero=zero; } } static class FastReader { BufferedReader br; StringTokenizer st; public FastReader() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine() { String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.StringTokenizer; /** * @author Don Li */ public class BanhMi { int MOD = (int) 1e9 + 7; void solve() { int n = in.nextInt(), Q = in.nextInt(); char[] s = in.nextToken().toCharArray(); int[] sum = new int[n + 1]; for (int i = 0; i < n; i++) sum[i + 1] = sum[i] + (s[i] - '0'); while (Q-- > 0) { int l = in.nextInt() - 1, r = in.nextInt(); int ones = sum[r] - sum[l], zeros = r - l - ones; long ans = mul(sub(mpow(2, ones), 1), mpow(2, zeros)); out.println(ans); } } long mul(long a, long b) { return a * b % MOD; } long add(long a, long b) { return (a + b) % MOD; } long sub(long a, long b) { return (a - b + MOD) % MOD; } long mpow(long a, long n) { long res = 1; while (n > 0) { if ((n & 1) > 0) res = res * a % MOD; a = a * a % MOD; n >>= 1; } return res; } public static void main(String[] args) { in = new FastScanner(new BufferedReader(new InputStreamReader(System.in))); out = new PrintWriter(System.out); new BanhMi().solve(); out.close(); } static FastScanner in; static PrintWriter out; static class FastScanner { BufferedReader in; StringTokenizer st; public FastScanner(BufferedReader in) { this.in = in; } public String nextToken() { while (st == null || !st.hasMoreTokens()) { try { st = new StringTokenizer(in.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } public int nextInt() { return Integer.parseInt(nextToken()); } public long nextLong() { return Long.parseLong(nextToken()); } public double nextDouble() { return Double.parseDouble(nextToken()); } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#!/usr/bin/env python """ This file is part of https://github.com/Cheran-Senthil/PyRival. Copyright 2018 Cheran Senthilkumar all rights reserved, Cheran Senthilkumar <[email protected]> Permission to use, modify, and distribute this software is given under the terms of the MIT License. """ from __future__ import division, print_function import cmath import itertools import math import operator as op # import random import sys from atexit import register from bisect import bisect_left, bisect_right # from collections import Counter, MutableSequence, defaultdict, deque # from copy import deepcopy # from decimal import Decimal # from difflib import SequenceMatcher # from fractions import Fraction # from heapq import heappop, heappush if sys.version_info[0] < 3: # from cPickle import dumps from io import BytesIO as stream # from Queue import PriorityQueue, Queue else: # from functools import reduce from io import StringIO as stream from math import gcd # from pickle import dumps # from queue import PriorityQueue, Queue if sys.version_info[0] < 3: class dict(dict): """dict() -> new empty dictionary""" def items(self): """D.items() -> a set-like object providing a view on D's items""" return dict.iteritems(self) def keys(self): """D.keys() -> a set-like object providing a view on D's keys""" return dict.iterkeys(self) def values(self): """D.values() -> an object providing a view on D's values""" return dict.itervalues(self) def gcd(x, y): """gcd(x, y) -> int greatest common divisor of x and y """ while y: x, y = y, x % y return x input = raw_input range = xrange filter = itertools.ifilter map = itertools.imap zip = itertools.izip def sync_with_stdio(sync=True): """Set whether the standard Python streams are allowed to buffer their I/O. Args: sync (bool, optional): The new synchronization setting. """ global input, flush if sync: flush = sys.stdout.flush else: sys.stdin = stream(sys.stdin.read()) input = lambda: sys.stdin.readline().rstrip('\r\n') sys.stdout = stream() register(lambda: sys.__stdout__.write(sys.stdout.getvalue())) def main(): n, q = map(int, input().split()) bin_num = input() one_cnt = [0] * (n + 1) for i in range(n): if bin_num[i] == '1': one_cnt[i] += one_cnt[i - 1] + 1 else: one_cnt[i] = one_cnt[i - 1] for _ in range(q): l, r = map(int, input().split()) ones = one_cnt[r - 1] - one_cnt[l - 2] zeroes = r + 1 - (l + ones) exp_ones = pow(2, ones, 1000000007) exp_zeroes = pow(2, zeroes, 1000000007) print((exp_ones - 1 + (exp_ones - 1) * (exp_zeroes - 1)) % 1000000007) if __name__ == '__main__': sync_with_stdio(False) if 'PyPy' in sys.version: from _continuation import continulet def bootstrap(c): callable, arg = c.switch() while True: to = continulet(lambda _, f, x: f(x), callable, arg) callable, arg = c.switch(to=to) c = continulet(bootstrap) c.switch() main() else: import threading sys.setrecursionlimit(2097152) threading.stack_size(134217728) main_thread = threading.Thread(target=main) main_thread.start() main_thread.join()
PYTHON
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.io.FilterInputStream; import java.io.BufferedInputStream; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; ScanReader in = new ScanReader(inputStream); PrintWriter out = new PrintWriter(outputStream); CBanhMi solver = new CBanhMi(); solver.solve(1, in, out); out.close(); } static class CBanhMi { public void solve(int testNumber, ScanReader in, PrintWriter out) { int n = in.scanInt(); int q = in.scanInt(); long mod = 1000000007; String str = in.scanString(); int arr[] = new int[n + 1]; for (int i = 1; i <= n; i++) { arr[i] = str.charAt(i - 1) - '0'; } for (int i = 1; i <= n; i++) arr[i] += arr[i - 1]; while (q-- > 0) { int l = in.scanInt(); int r = in.scanInt(); long ones = arr[r] - arr[l - 1]; long zeros = (r - l + 1) - ones; long ans = 0; ans = (ans + (CodeX.power(2, ones, mod) - 1)) % mod; long temp = ((CodeX.power(2, ones, mod) - 1) * (CodeX.power(2, zeros, mod) - 1)) % mod; out.println((ans + temp) % mod); } } } static class CodeX { public static long power(long x, long y, long p) { long res = 1; x = x % p; while (y > 0) { if ((y & 1) != 0) res = (res * x) % p; y = y >> 1; x = (x * x) % p; } return res; } } static class ScanReader { private byte[] buf = new byte[4 * 1024]; private int INDEX; private BufferedInputStream in; private int TOTAL; public ScanReader(InputStream inputStream) { in = new BufferedInputStream(inputStream); } private int scan() { if (INDEX >= TOTAL) { INDEX = 0; try { TOTAL = in.read(buf); } catch (Exception e) { e.printStackTrace(); } if (TOTAL <= 0) return -1; } return buf[INDEX++]; } public int scanInt() { int I = 0; int n = scan(); while (isWhiteSpace(n)) n = scan(); int neg = 1; if (n == '-') { neg = -1; n = scan(); } while (!isWhiteSpace(n)) { if (n >= '0' && n <= '9') { I *= 10; I += n - '0'; n = scan(); } } return neg * I; } public String scanString() { int c = scan(); while (isWhiteSpace(c)) c = scan(); StringBuilder RESULT = new StringBuilder(); do { RESULT.appendCodePoint(c); c = scan(); } while (!isWhiteSpace(c)); return RESULT.toString(); } private boolean isWhiteSpace(int n) { if (n == ' ' || n == '\n' || n == '\r' || n == '\t' || n == -1) return true; else return false; } } }
JAVA
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
#include <bits/stdc++.h> using namespace std; long long ModPow(long long base, long long exp, long long m) { long long r = 1; long long p; base %= m; while (exp) { if (exp & 1) r = (r * base) % m; exp = exp >> 1; base = (base * base) % m; } return r; } int32_t main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); long long n, q, l, r; string s; cin >> n >> q >> s; long long a[n + 1]; for (long long i = 1; i <= n; i++) a[i] = s[i - 1] - '0'; long long pre[n + 1]; pre[0] = 0; for (long long i = 1; i <= n; i++) { pre[i] = pre[i - 1]; if (a[i] == 1) pre[i]++; } while (q--) { cin >> l >> r; long long len = r - l + 1; long long zero = 0; long long x = pre[r] - pre[l - 1]; if (x == len) { cout << (ModPow(2, x, 1000000007) - 1 + 1000000007) % 1000000007 << "\n"; continue; } zero = len - x; long long y = (ModPow(2, x, 1000000007) - 1 + 1000000007) % 1000000007; long long z = (ModPow(2, zero, 1000000007) - 1 + 1000000007) % 1000000007; cout << (y % 1000000007 + (y % 1000000007 * z % 1000000007) % 1000000007) % 1000000007 << "\n"; } return 0; }
CPP
1062_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 x_i ∈ \{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 x_i and the deliciousness of all the remaining parts will also increase by x_i. 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 l_i and r_i. 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 [l_i, r_i] 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 ≀ 100 000). 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 l_i and r_i (1 ≀ l_i ≀ r_i ≀ 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 10^9 + 7. Examples Input 4 2 1011 1 4 3 4 Output 14 3 Input 3 2 111 1 2 3 3 Output 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.
2
9
import java.util.*; import java.io.*; import java.math.*; import java.awt.geom.*; import static java.lang.Math.*; public class Solution implements Runnable { long mod1 = (long) 1e9 + 7; int mod2 = 998244353; public void solve() throws Exception { int n=sc.nextInt(); int q=sc.nextInt(); int one[]=new int[n]; int zero[]=new int[n]; String s=sc.nextToken(); int o=0,z=0; for(int i=0;i<n;i++) { if(s.charAt(i)=='1') { o++; } else { z++; } one[i]=o; zero[i]=z; } while(q-->0) { int l=sc.nextInt(),r=sc.nextInt(); l--;r--; int oneinrange,zeroinrange; long result=0; if(l==0) { oneinrange=one[r]; zeroinrange=zero[r]; } else { oneinrange=one[r]-one[l-1]; zeroinrange=zero[r]-zero[l-1]; } if(oneinrange==0) { out.println(0); continue; } result += power(2l, oneinrange, mod1)-1; result%=mod1; result += result*((power(2l, zeroinrange, mod1)-1)%mod1); result%=mod1; out.println(result); } } static void sort(int[] a) { ArrayList<Integer> l = new ArrayList<>(); for (int i : a) l.add(i); Collections.sort(l); for (int i = 0; i < a.length; i++) a[i] = l.get(i); } static long gcd(long a, long b) { if (a == 0) return b; return gcd(b % a, a); } static long ncr(int n, int r, long p) { if (r > n) return 0l; if (r > n - r) r = n - r; long C[] = new long[r + 1]; C[0] = 1; for (int i = 1; i <= n; i++) { for (int j = Math.min(i, r); j > 0; j--) C[j] = (C[j] + C[j - 1]) % p; } return C[r] % p; } public long power(long x, long y, long p) { long res = 1; // out.println(x+" "+y); x = x % p; if (x == 0) return 0; while (y > 0) { if ((y & 1) == 1) res = (res * x) % p; y = y >> 1; x = (x * x) % p; } return res; } static Throwable uncaught; BufferedReader in; FastScanner sc; PrintWriter out; @Override public void run() { try { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out); sc = new FastScanner(in); solve(); } catch (Throwable uncaught) { Solution.uncaught = uncaught; } finally { out.close(); } } public static void main(String[] args) throws Throwable { Thread thread = new Thread(null, new Solution(), "", (1 << 26)); thread.start(); thread.join(); if (Solution.uncaught != null) { throw Solution.uncaught; } } } class FastScanner { BufferedReader in; StringTokenizer st; public FastScanner(BufferedReader in) { this.in = in; } public String nextToken() throws Exception { while (st == null || !st.hasMoreTokens()) { st = new StringTokenizer(in.readLine()); } return st.nextToken(); } public int nextInt() throws Exception { return Integer.parseInt(nextToken()); } public int[] readArray(int n) throws Exception { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = nextInt(); return a; } public long nextLong() throws Exception { return Long.parseLong(nextToken()); } public double nextDouble() throws Exception { return Double.parseDouble(nextToken()); } }
JAVA