程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> codeforces A. Shaass and Oskols 題解

codeforces A. Shaass and Oskols 題解

編輯:C++入門知識

Shaass has decided to hunt some birds. There are n horizontal electricity wires aligned parallel to each other. Wires are numbered 1 to n from top to bottom. On each wire there are some oskols sitting next to each other. Oskol is the name of a delicious kind of birds in Shaass's territory. Supposed there are ai oskols sitting on the i-th wire.

Sometimes Shaass shots one of the birds and the bird dies (suppose that this bird sat at the i-th wire). Consequently all the birds on the i-th wire to the left of the dead bird get scared and jump up on the wire numberi?-?1, if there exists no upper wire they fly away. Also all the birds to the right of the dead bird jump down on wire number i?+?1, if there exists no such wire they fly away.

Shaass has shot m birds. You're given the initial number of birds on each wire, tell him how many birds are sitting on each wire after the shots.

Input

The first line of the input contains an integer n, (1?≤?n?≤?100). The next line contains a list of space-separated integers a1,?a2,?...,?an, (0?≤?ai?≤?100).

The third line contains an integer m, (0?≤?m?≤?100). Each of the next m lines contains two integers xi and yi. The integers mean that for the i-th time Shaass shoot the yi-th (from left) bird on the xi-th wire, (1?≤?xi?≤?n,?1?≤?yi). It's guaranteed there will be at least yi birds on the xi-th wire at that moment.

Output

On the i-th line of the output print the number of birds on the i-th wire.

Sample test(s) input
5
10 10 10 10 10
5
2 5
3 13
2 12
1 13
4 6
output
0
12
5
0
16

模擬鳥飛的過程, 暴力法了。

#include 
#include 
#include 
using namespace std;
#define FR(i, n) for (i = 0; i < n; i++)

void ShaassandOskols()
{
	int n = 0, ythBird = 0, xthWire = 0;
	cin>>n;
	vector wires(n);
	int i = 0;
	FR (i, n) cin>>wires[i];

	cin>>n;
	FR (i, n)
	{
		cin>>xthWire>>ythBird;
		if (xthWire > 1) wires[xthWire-2] += ythBird-1;
		if (xthWire < (int)wires.size()) 
			wires[xthWire] += wires[xthWire-1] - ythBird;
		wires[xthWire-1] = 0;
	}
	FR(i, wires.size())
	{
		cout<



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