记录编号 |
251182 |
评测结果 |
AAAAAAAAAA |
题目名称 |
烤鸡翅 |
最终得分 |
100 |
用户昵称 |
lxtgogogo |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.146 s |
提交时间 |
2016-04-17 07:30:29 |
内存使用 |
2.46 MiB |
显示代码纯文本
/*
Language: c++
Author: lxtgogogo
Date: 2016.04.15
*/
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<iomanip>
#include<queue>
using namespace std;
inline int read(){
int x=0;bool f=true;char ch=getchar();
while(ch>'9' || ch<'0') {if(ch=='-'){f=false;}ch=getchar();}
while(ch>='0' && ch<='9') {x=(x<<1)+(x<<3)+ch-'0';ch=getchar();}
return f?x:-x;
}
priority_queue< int,vector< int >,less< int > > big;
const int r=250010;
int n=0,ans=0;
int x[r]={},y[r]={};
bool f[r]={};
int top=0;
void init(){
n=read();
for(int i=1;i<=n;i++) x[i]=read();
for(int i=1;i<=n;i++) y[i]=read();
}
void work(){
long long sum=0;
for(int i=1;i<=n;i++)
{
sum+=x[i];
if(sum>=y[i])
{
sum-=y[i];
ans++;
big.push(y[i]);top++;
}
else if(top>0 && y[i]<big.top())
{
int t=big.top();big.pop();
sum+=t;sum-=y[i];
big.push(y[i]);
}
}
printf("%d\n",ans);
}
int main(){
freopen("wing.in","r",stdin);
freopen("wing.out","w",stdout);
init();
work();
fclose(stdin);fclose(stdout);
return 0;
}