记录编号 |
382910 |
评测结果 |
AAAAAAAAAA |
题目名称 |
烤鸡翅 |
最终得分 |
100 |
用户昵称 |
玉带林中挂 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.853 s |
提交时间 |
2017-03-14 20:34:14 |
内存使用 |
2.10 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<cstring>
using namespace std;
const int maxn=250050;
priority_queue <int> q;
int main()
{
freopen("wing.in","r",stdin);
freopen("wing.out","w",stdout);
int ans=0,n,i;
long long ti=0;
int x[maxn],y[maxn];
cin>>n;
for(int i=1;i<=n;i++)
cin>>x[i];
for(int i=1;i<=n;i++)
cin>>y[i];
for(int i=1;i<=n;i++)
{
ti+=x[i];
if(ti>=y[i])
{
ti-=y[i];
ans++;
q.push(y[i]);
}
else if(!q.empty())
{
int c=q.top();
if(c>y[i])
{
ti+=c;
ti-=y[i];
q.pop();
q.push(y[i]);
}
}
}
cout<<ans;
fclose(stdin);
fclose(stdout);
return 0;
}