记录编号 |
382852 |
评测结果 |
AAAAAAAAAA |
题目名称 |
烤鸡翅 |
最终得分 |
100 |
用户昵称 |
皓芷 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.258 s |
提交时间 |
2017-03-14 19:41:22 |
内存使用 |
2.22 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<queue>
#include<cstring>
using namespace std;
priority_queue<int>a;
int n,y;
long long x[250010];
int main()
{
freopen("wing.in","r",stdin);
freopen("wing.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++)
scanf("%lld",&x[i]);
x[0]=0;
for(int i=1;i<=n;i++)
{
scanf("%d",&y);
x[i]+=x[i-1];
if(x[i]>=y)
{
a.push(y);
x[i]-=y;
}
else if((!a.empty())&&a.top()>y)
{
x[i]+=a.top();
a.pop();
x[i]-=y;
a.push(y);
}
}
printf("%d",a.size());
return 0;
}