记录编号 250643 评测结果 AAAAAAAAAA
题目名称 烤鸡翅 最终得分 100
用户昵称 GravatarWAHT 是否通过 通过
代码语言 C++ 运行时间 0.463 s
提交时间 2016-04-15 16:44:31 内存使用 3.91 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<queue>
#define ll long long
using namespace std;
const int maxn=300000;
ll read()
{
	ll x=0;
	char ch=getchar();
	while(ch>'9'||ch<'0')	ch=getchar();
	while(ch>='0'&&ch<='9')	x=x*10+ch-'0',ch=getchar();
	return x;
}
int n;
ll x[maxn],y[maxn];
priority_queue<ll>q;
int main()
{
	freopen("wing.in","r",stdin);
	freopen("wing.out","w",stdout);
	n=read();
	for(int i=1;i<=n;i++)	x[i]=read();
	for(int i=1;i<=n;i++)	y[i]=read();
	ll sum=0,num=0;;
	for(int i=1;i<=n;i++)
	{
		sum+=x[i];
		if(sum>=y[i])
		{
			q.push(y[i]);
			sum-=y[i];
			num++;
		}
		else	if(!q.empty()&&q.top()>y[i])
		{
			
			sum+=q.top()-y[i];
			q.pop();
			q.push(y[i]);
		}
	}
	cout<<num<<endl;
	return 0;
}