记录编号 | 595690 | 评测结果 | AAAAAAAAAAAAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | HS的数 | 最终得分 | 100 | ||
用户昵称 | wdsjl | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.764 s | ||
提交时间 | 2024-10-15 20:48:44 | 内存使用 | 3.84 MiB | ||
#include <bits/stdc++.h> using namespace std; int n,x; long long ans; priority_queue<int> q; int main(){ freopen("HSshu.in","r",stdin); freopen("HSshu.out","w",stdout); scanf("%d",&n); for(int i=1;i<=n;i++){ scanf("%d",&x); x-=i; q.push(x); if(q.size()&&q.top()>=x)ans+=q.top()-x,q.pop(),q.push(x); } printf("%lld",ans); return 0; }