http://codeforces.com/gym/101466/problem/J
J. Jeronimo's List
time limit per test
2.0 s
memory limit per test
1024 MB
input
standard input
output
standard output
Jeronimo the bear loves numbers and he is planning to write n numbers in his notebook.
After writing the first m numbers, Jeronimo felt that he was spending a lot of time thinking new numbers, so he wrote the next n - mmissing numbers as the sum modulo 3 × 107 of the numbers in the i - m and i - m + 1 positions for m < i ≤ n
While Jeronimo was writing, his sister Lupe arrived and asked him q questions. The i - th question consist of a number bi, Jeronimo has to say what would be the number in the position bi if all the numbers were sorted in ascending order. Jeronimo wants to answer each question as soon as possible but he spends a lot of time counting so he ask your help.
Input
The first line of the input has three integers n (3 ≤ n ≤ 3 × 107), m (3 ≤ m ≤ min(100, n)) and q (1 ≤ q ≤ 10000).
The second line contains m numbers a1, a2, ..., am, (0 ≤ ai < 3 × 107), The first m numbers that Jeronimo wrote.
The third line contains q questions b1, b2, ..., bq (1 ≤ bi ≤ n)
Output
Print q lines. The i - th line must be the answer of the i - th question made by Lupe.
Examples
input
Copy
6 3 6
1 2 3
1 2 3 4 5 6
output
Copy
1
2
3
3
5
6
input
Copy
10 4 3
1 2 9 10
1 5 10
output
Copy
1
10
30
俺不知道什么桶排序,俺用v标记出现的次数 在放到b数组里面去,
#include<bits/stdc++.h>
using namespace std;
const int N = 3e7 + 7;
const int mod = 3e7;
int a[N], n, m, q, v[N], b[N];
int main()
{
cin >> n >> m >> q;
for(int i = 0; i < m; i++)
{
scanf("%d", a+i);
v[a[i]]++;
}
for(int i = m; i < n; i++)
{
a[i] = a[i-m]+a[i-m+1];
if(a[i] >= mod) a[i] %= mod;
v[a[i]]++;
}
int k = 0;
for(int i = 0; i < mod; i++)
if(v[i])
while(v[i]--) b[k++] = i;
while(q--)
{
int x;
scanf("%d",&x);
printf("%d\n",b[x-1]);
}
return 0;
}