302053: CF390C. Inna and Candy Boxes

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Inna and Candy Boxes

题目描述

Inna loves sweets very much. She has $ n $ closed present boxes lines up in a row in front of her. Each of these boxes contains either a candy (Dima's work) or nothing (Sereja's work). Let's assume that the boxes are numbered from 1 to $ n $ , from left to right. As the boxes are closed, Inna doesn't know which boxes contain candies and which boxes contain nothing. Inna chose number $ k $ and asked $ w $ questions to Dima to find that out. Each question is characterised by two integers $ l_{i},r_{i} $ ( $ 1<=l_{i}<=r_{i}<=n $ ; $ r-l+1 $ is divisible by $ k $ ), the $ i $ -th question is: "Dima, is that true that among the boxes with numbers from $ l_{i} $ to $ r_{i} $ , inclusive, the candies lie only in boxes with numbers $ l_{i}+k-1 $ , $ l_{i}+2k-1 $ , $ l_{i}+3k-1 $ , ..., $ r_{i} $ ?" Dima hates to say "no" to Inna. That's why he wonders, what number of actions he will have to make for each question to make the answer to the question positive. In one action, Dima can either secretly take the candy from any box or put a candy to any box (Dima has infinitely many candies). Help Dima count the number of actions for each Inna's question. Please note that Dima doesn't change the array during Inna's questions. That's why when you calculate the number of operations for the current question, please assume that the sequence of boxes didn't change.

输入输出格式

输入格式


The first line of the input contains three integers $ n $ , $ k $ and $ w $ $ (1<=k<=min(n,10),1<=n,w<=10^{5}) $ . The second line contains $ n $ characters. If the $ i $ -th box contains a candy, the $ i $ -th character of the line equals 1, otherwise it equals 0. Each of the following $ w $ lines contains two integers $ l_{i} $ and $ r_{i} $ $ (1<=l_{i}<=r_{i}<=n) $ — the description of the $ i $ -th question. It is guaranteed that $ r_{i}-l_{i}+1 $ is divisible by $ k $ .

输出格式


For each question, print a single number on a single line — the minimum number of operations Dima needs to make the answer to the question positive.

输入输出样例

输入样例 #1

10 3 3
1010100011
1 3
1 6
4 9

输出样例 #1

1
3
2

说明

For the first question, you need to take a candy from the first box to make the answer positive. So the answer is 1. For the second question, you need to take a candy from the first box, take a candy from the fifth box and put a candy to the sixth box. The answer is 3. For the third question, you need to take a candy from the fifth box and put it to the sixth box. The answer is 2.

Input

加入题单

算法标签: