题解 CF294A Shaass and Oskols

Posted zdsrs060330

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题解 CF294A Shaass and Oskols相关的知识,希望对你有一定的参考价值。

这题不是很难哦,为什么要看题解呢~
看代码:
#include<bits/stdc++.h>//万能头文件
using namespace std;
int a[105];//保存电线上有多少鸟
int main()
{
	int n;
	cin>>n;//读入
	for(int i=1;i<=n;i++)
		cin>>a[i];//读入
	int m;
	cin>>m;//读入
	while(m--)
	{
		int x,y;//定义
		cin>>x>>y;//读入
		a[x-1]+=(y-1);//飞到i-1电线
		a[x+1]+=(a[x]-y);//飞到i+1电线
		a[x]=0;//记得归零,我看了五分钟才看出来
	}
	for(int i=1;i<=n;i++)
		cout<<a[i]<<endl;//欢快输出
	return 0;//完美结束
 } 

by 你们可爱的czy

以上是关于题解 CF294A Shaass and Oskols的主要内容,如果未能解决你的问题,请参考以下文章

[CF294B]Shaass and Bookshelf

CF294C Shaass and Lights

#Shaass and Lights:CodeForces - 294C

Codeforces 294B Shaass and Bookshelf:dp

CF276E Little Girl and Problem on Trees 题解

cf题解--I. Bashar and Hamada