zoj 2724
#include <iostream>
#include <cstdio>
#include <cstring>
#include <queue>
#include <vector>
using namespace std;
struct node{
char msg[20];
int a,b;
};
struct cmp{
bool operator()(const node x, const node y)
{
return x.b > y.b;
}
};
int main(int argc,char * argv[])
{
freopen("aaa.txt","r",stdin);
char s[100];
char order[10];
priority_queue<node,vector<node>,cmp> q;
while(gets(s))
{
if(strlen(s) == 0)
break;
sscanf(s,"%s",order);
if(strcmp(s,"GET")==0)
{
if(q.empty())
fprintf(stdout,"EMPTY QUEUE!\n");
else
{
fprintf(stdout,"%s %d\n",q.top().msg,q.top().a);
q.pop();
}
}
else
{
node n;
sscanf(s,"%s %s %d %d",order,n.msg,&n.a,&n.b);
q.push(n);
}
}
return 0;
}
珑嫙(295775492) 11:15:36
//2724
#include <iostream>
#include<queue>
#include<cstring>
using namespace std;
struct node
{ char x[10];
int a,b;
const bool operator<(const node &y)const
{ if(b==y.b)return a>y.a;
return b > y.b;
}
}s;
priority_queue<node>my;
int main()
{
char c[3];
int i,j=0;
while(cin>>c)
{
if(c[0]!='G')
{
cin>>s.x>>s.a>>s.b;
my.push(s);
}
else
{
if(my.empty())
cout<<"EMPTY QUEUE!"<<endl;
else
{
cout<<my.top().x<<" "<<my.top().a<<endl;
my.pop();
}
}
}
return 0;
}
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 从二进制到误差:逐行拆解C语言浮点运算中的4008175468544之谜
· .NET制作智能桌面机器人:结合BotSharp智能体框架开发语音交互
· 软件产品开发中常见的10个问题及处理方法
· 后端思维之高并发处理方案
· 千万级大表的优化技巧
· 在 VS Code 中,一键安装 MCP Server!
· 想让你多爱自己一些的开源计时器
· 10年+ .NET Coder 心语 ── 继承的思维:从思维模式到架构设计的深度解析