比赛 test2 评测结果 WWWWWWWWWW
题目名称 烤鸡翅 最终得分 0
用户昵称 东林桂香 运行时间 0.228 s
代码语言 C++ 内存使用 2.22 MiB
提交时间 2017-03-12 20:35:01
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn=250020;
int n,ans;
int x[maxn],y[maxn];
int main()
{
    freopen("wing.in","r",stdin);
	freopen("wing.out","w",stdout);
	scanf("%d",&n);
	for(int i=1;i<=n;i++)
	  scanf("%d",&x[i]);
	for(int i=1;i<=n;i++)
	{
	  scanf("%d",&y[i]);
	  if(x[i]<y[i])	x[i+1]+=x[i];
	  else {
	  	x[i+1]=x[i+1]+x[i]-y[i];
	  	ans++;
	  }
	}
	printf("%d",ans);
	fclose(stdin);
	fclose(stdout);
	return 0;  
}