比赛 |
2024暑假C班集训7 |
评测结果 |
AAAAAAAAAA |
题目名称 |
买卖 |
最终得分 |
100 |
用户昵称 |
djyqjy |
运行时间 |
0.267 s |
代码语言 |
C++ |
内存使用 |
4.78 MiB |
提交时间 |
2024-07-07 11:10:04 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
const int N=100010;
long long a[N],b[N];
int n;
long long ans;
priority_queue <long long> q;
int main()
{
freopen("buy.in","r",stdin);
freopen("buy.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++)
scanf("%lld",&a[i]);
for(int i=1;i<=n;i++)
scanf("%lld",&b[i]);
if(a[n]<b[n])
{
ans+=b[n]-a[n];
q.push(a[n]);
}
else q.push(b[n]);
for(int i=n-1;i>=1;i--)
{
if(a[i]<b[i]&&b[i]>=q.top()) ans+=b[i]-a[i],q.push(a[i]);
else if(q.top()>a[i])
{
ans+=q.top()-a[i];
q.pop();
q.push(b[i]);
q.push(a[i]);
}
else q.push(b[i]);
}
printf("%lld",ans);
return 0;
}