记录编号 567804 评测结果 AAAAAAAAAA
题目名称 [POJ 1456]超市 最终得分 100
用户昵称 Gravataryrtiop 是否通过 通过
代码语言 C++ 运行时间 1.410 s
提交时间 2021-12-08 19:56:37 内存使用 5.96 MiB
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <queue>
using namespace std;
const int maxn = 10005;
priority_queue<int , vector<int> , greater<int> > q;
int p[maxn],d[maxn],rk[maxn];
int n;
bool cmp(int x,int y) {
	return d[x] < d[y];
}
void work() {
	for(int i = 1;i <= n;++ i) {
		scanf("%d%d",&p[i],&d[i]);
		rk[i] = i;
	}
	sort(rk + 1 , rk + 1 + n , cmp);
	for(int i = 1;i <= n;++ i) {
		int t = rk[i];
		if(q.empty()) {
			q.push(p[t]);
			continue ;
		}
		if(d[t] > q.size()) {
			q.push(p[t]);
			continue ;
		}
		if(q.top() < p[t]) {
			q.pop();
			q.push(p[t]);
			continue ;
		}
	}
	int ans = 0;
	while(!q.empty()) {
		ans += q.top();
		q.pop();
	}
	printf("%d\n",ans);
	return ; 
} 
int main() {
	freopen("supermarket.in","r",stdin);
	freopen("supermarket.out","w",stdout);
	while(~ scanf("%d",&n)) {
		work();
	}
	fclose(stdin);
	fclose(stdout);
	return 0;
}