程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Codeforces Round #271 (Div. 2)

Codeforces Round #271 (Div. 2)

編輯:C++入門知識

Codeforces Round #271 (Div. 2)



It is lunch time for Mole. His friend, Marmot, prepared him a nice game for lunch.

Marmot brought Mole n ordered piles of worms such that i-th pile contains ai worms. He labeled all these worms with consecutive integers: worms in first pile are labeled with numbers 1 to a1, worms in second pile are labeled with numbers a1?+?1 to a1?+?a2 and so on. See the example for a better understanding.

Mole can't eat all the worms (Marmot brought a lot) and, as we all know, Mole is blind, so Marmot tells him the labels of the best juicy worms. Marmot will only give Mole a worm if Mole says correctly in which pile this worm is contained.

Poor Mole asks for your help. For all juicy worms said by Marmot, tell Mole the correct answers.

Input

The first line contains a single integer n (1?≤?n?≤?105), the number of piles.

The second line contains n integers a1,?a2,?...,?an (1?≤?ai?≤?103, a1?+?a2?+?...?+?an?≤?106), where ai is the number of worms in the i-th pile.

The third line contains single integer m (1?≤?m?≤?105), the number of juicy worms said by Marmot.

The fourth line contains m integers q1,?q2,?...,?qm (1?≤?qi?≤?a1?+?a2?+?...?+?an), the labels of the juicy worms.

Output

Print m lines to the standard output. The i-th line should contain an integer, representing the number of the pile where the worm labeled with the number qi is.

Sample test(s) input
5
2 7 3 4 9
3
1 25 11
output
1
5
3
題意:給你n個序列的長度,依次連接n個序列,從第一個開始計數。求第m個原本屬於那個序列

思路:記錄每個數屬於那個小序列就行了

#include 
#include 
#include 
#include 
using namespace std;
const int maxn = 1e6;

int num[maxn];

int main() {
	int n;
	scanf("%d", &n);
	int cnt = 0;
	int m;
	for (int i = 1; i <= n; i++) {
		scanf("%d", &m);
		for (int j = 0; j < m; j++)
			num[++cnt] = i;
	}
	int q;
	scanf("%d", &q);
	while (q--) {
		scanf("%d", &m);
		printf("%d\n", num[m]);
	}
	return 0;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved