码迷,mamicode.com
首页 > 其他好文 > 详细

题解 CF294A 【Shaass and Oskols】

时间:2020-06-11 19:43:49      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:保存   turn   cout   --   +=   代码   and   pac   include   

这题不是很难哦,为什么要看题解呢~
看代码:
#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】

标签:保存   turn   cout   --   +=   代码   and   pac   include   

原文地址:https://www.cnblogs.com/zdsrs060330/p/13095040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!