生日礼物&&Supermarket
Solution1
可以通过堆来实现,按照过期时间排序,优先处理过期时间短的,等到没办法塞进去的时候弹出堆顶,最后就是所有的取法
#include<bits/stdc++.h> using namespace std; int n; struct node{int p,d;}a[10005]; bool cmp(node a,node b){return a.d<b.d||(a.p<b.p&&a.d==b.d);} priority_queue<int,vector<int>,greater<int> > q; int main(){ while(scanf("%d",&n)==1){ for(int i=1;i<=n;i++) scanf("%d %d",&a[i].p,&a[i].d); sort(a+1,a+n+1,cmp); int sum=0; for(int i=1;i<=n;i++){ if(a[i].d==sum)q.pop(),q.push(a[i].p); else if(a[i].d>sum) q.push(a[i].p),++sum; } int ans=0; while(!q.empty())ans+=q.top(),q.pop(); printf("%d\n",ans); } }
Solution2
可以通过链表+贪心实现,先把价值最高的放在最后,不浪费,之后再利用链表考虑前面的
#include<bits/stdc++.h> using namespace std; struct node{int qx,c;}a[1000005]; bool cmp(node a,node b){return a.c>b.c;} int pre[1000005],n,ans; bool b[1000005]; int find(int k){ if(!b[k]||!k)return k; return pre[k]=find(pre[k]); } int main(){ srand(20050628); freopen("homework.in","r",stdin); freopen("homework.out","w",stdout); scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d%d",&a[i].qx,&a[i].c); sort(a+1,a+n+1,cmp); for(int i=1;i<=n;i++) pre[i]=i-1; for(int i=1;i<=n;i++){ int tmp=find(a[i].qx); if(tmp){ b[tmp]=true; ans+=a[i].c; pre[a[i].qx]=pre[tmp]; } } cout<<ans<<endl; return 0; }
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 从二进制到误差:逐行拆解C语言浮点运算中的4008175468544之谜
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· 用99元买的服务器搭一套CI/CD系统
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· Excel百万数据如何快速导入?
· ShadowSql之.net sql拼写神器