Uva - 1598 - Exchange
本来想用优先队列做,可是不知道怎么处理之间的关系,最后还是用了map方法AC了,不过速度上有些慢,提交的时候跑了1.557秒。估计这道题时间都稍微长些,题目的时间限制也是4.5秒,不像一般题目的3秒限制。
AC代码:
#include <iostream> #include <cstdio> #include <cstdlib> #include <cctype> #include <cstring> #include <string> #include <sstream> #include <vector> #include <set> #include <map> #include <algorithm> #include <stack> #include <queue> #include <bitset> #include <cassert> using namespace std; struct CMD { string cmd; int size, price; CMD(string kind, int x = 0, int y = 0) :cmd(kind), size(x), price(y) {} }; map<int, set<int> > BUY, SELL; map<int, int> BUY_VAL, SELL_VAL; vector<CMD> D; void trade(int kind) { while (!BUY.empty() && !SELL.empty()) { if (BUY.rbegin()->first >= SELL.begin()->first) { set<int> &v1 = BUY.rbegin()->second; set<int> &v2 = SELL.begin()->second; int aid = *v1.begin(), bid = *v2.begin(); int z = min(D[aid].size, D[bid].size); printf("TRADE %d %d\n", z, kind ? D[aid].price : D[bid].price); D[aid].size -= z, D[bid].size -= z; BUY_VAL[D[aid].price] -= z, SELL_VAL[D[bid].price] -= z; if (D[aid].size == 0) v1.erase(aid); if (D[bid].size == 0) v2.erase(bid); if (v1.size() == 0) BUY.erase(D[aid].price); if (v2.size() == 0) SELL.erase(D[bid].price); } else { return; } } } // 打印QUOTE一行 void print() { while (BUY_VAL.size() && BUY_VAL.rbegin()->second == 0) { BUY_VAL.erase(BUY_VAL.rbegin()->first); } while (SELL_VAL.size() && SELL_VAL.begin()->second == 0) { SELL_VAL.erase(SELL_VAL.begin()->first); } printf("QUOTE "); if (BUY_VAL.size()) { printf("%d %d", BUY_VAL.rbegin()->second, BUY_VAL.rbegin()->first); } else { printf("0 0"); } printf(" - "); if (SELL_VAL.size()) { printf("%d %d", SELL_VAL.begin()->second, SELL_VAL.begin()->first); } else { printf("0 99999"); } cout << endl; } int main() { int Q, cases = 0; char cmd[16]; while (scanf("%d", &Q) == 1) { if (cases++) { cout << endl; } // 记得清空 BUY.clear(), SELL.clear(); BUY_VAL.clear(), SELL_VAL.clear(); D.clear(); int size, price, id; // 读入命令并处理交易 for (int i = 0; i < Q; i++) { scanf("%s", cmd); if (!strcmp(cmd, "BUY")) { scanf("%d %d", &size, &price); BUY[price].insert(i); BUY_VAL[price] += size; D.push_back(CMD("BUY", size, price)); trade(0); } else if (!strcmp(cmd, "SELL")) { scanf("%d %d", &size, &price); SELL[price].insert(i); SELL_VAL[price] += size; D.push_back(CMD("SELL", size, price)); trade(1); } else if (!strcmp(cmd, "CANCEL")) { scanf("%d", &id), id--; D.push_back(CMD("CANCEL", id)); if (D[id].cmd == "BUY") { BUY[D[id].price].erase(id); if (BUY[D[id].price].size() == 0) BUY.erase(D[id].price); BUY_VAL[D[id].price] -= D[id].size; D[id].size = 0; } if (D[id].cmd == "SELL") { SELL[D[id].price].erase(id); if (SELL[D[id].price].size() == 0) SELL.erase(D[id].price); SELL_VAL[D[id].price] -= D[id].size; D[id].size = 0; } } print(); } } return 0; }
Uva - 1598 - Exchange的更多相关文章
- 【习题 5-14 UVA - 1598】Exchange
[链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 各组数据之间有空行! 且最后一行后面没有空行! 然后就是用set来模拟就好. 删除的时候,不着急删除. 因为并不用时刻输出集合大小. ...
- UVA Foreign Exchange
Foreign Exchange Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu Your non ...
- UVA 10763 Foreign Exchange 出国交换 pair+map
题意:给出很多对数字,看看每一对(a,b)能不能找到对应的(b,a). 放在贪心这其实有点像检索. 用stl做,map+pair. 记录每一对出现的次数,然后遍历看看对应的那一对出现的次数有没有和自己 ...
- UVA 10763 Foreign Exchange
Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu Description Your non- ...
- uva 10763 Foreign Exchange <"map" ,vector>
Foreign Exchange Your non-profit organization (iCORE - international Confederation of Revolver Enthu ...
- uva 10763 Foreign Exchange(排序比较)
题目连接:10763 Foreign Exchange 题目大意:给出交换学生的原先国家和所去的国家,交换成功的条件是如果A国给B国一个学生,对应的B国也必须给A国一个学生,否则就是交换失败. 解题思 ...
- UVa 10763 Foreign Exchange(map)
Your non-profitorganization (iCORE - international Confederationof Revolver Enthusiasts) coordinates ...
- uva:10763 - Foreign Exchange(排序)
题目:10763 - Foreign Exchange 题目大意:给出每一个同学想要的交换坐标 a, b 代表这位同学在位置a希望能和b位置的同学交换.要求每一位同学都能找到和他交换的交换生. 解题思 ...
- Foreign Exchange UVA - 10763
Your non-profit organization (iCORE - international Confederation of Revolver Enthusiasts) coordin ...
随机推荐
- Linux学习之CentOS(一)--CentOS6.5环境搭建
一.前言 作为一个从事运维工作好几年的老运维来说,linux系统怎能不学呢?所以,这几天自己准备学习一下linux操作系统.废话不多说,直奔主题. 要学linux开发,首先得要安装linux系统吧,这 ...
- Mobx使用详解
Mobx是一个功能强大,上手非常容易的状态管理工具.就连redux的作者也曾经向大家推荐过它,在不少情况下你的确可以使用Mobx来替代掉redux. 本教程旨在介绍其用法及概念,并重点介绍其与Reac ...
- 【python进阶】Garbage collection垃圾回收2
前言 在上一篇文章[python进阶]Garbage collection垃圾回收1,我们讲述了Garbage collection(GC垃圾回收),画说Ruby与Python垃圾回收,Python中 ...
- vue通过id从列表页跳转到对应的详情页
1. 列表页:列表页带id跳转到详情页 详情页:把id传回到后台就可以获取到数据了 2.列表页跳转到详情页并更改详情页的标题 列表页:带id和页面标题的typeid跳转到详情页 详情页:在html绑定 ...
- 使用ajax上传图片,支持图片即时浏览,支持js图片压缩后上传给服务器
使用ajax上传图片,支持图片即时浏览,支持js图片压缩后上传给服务器 ajax上传主要使用了 var reader = new FileReader() 此方法 js图片压缩主要是利用canvas进 ...
- Java并发编程(一)-为什么要并发
并发所带来的好处 1. 并发在某些情况(并不是所有情况)下可以带来性能上的提升 1) 提升对CPU的使用效率 提升多核CPU的利用率:一般来说一台主机上的会有多个CPU核心,我们可以创建多个线程,理论 ...
- 安卓onTextChanged参数解释及实现EditText字数监听 Editable使用
原作者部分修改部分 补充部分 补充部分2 补充部分3 补充部分4 Editable 尊重原作者:此篇文章是借鉴原作者地址 的博文 并进行修改和增加补充说明,我只是补充和修改: 我感觉这篇文章经过我的补 ...
- 在Spring Boot框架下使用WebSocket实现消息推送
Spring Boot的学习持续进行中.前面两篇博客我们介绍了如何使用Spring Boot容器搭建Web项目(使用Spring Boot开发Web项目)以及怎样为我们的Project添加HTTPS的 ...
- GCT学习总结
GCT的一个综合的考试性质,时间紧,题量大,这个时候需要我们快速.准确的答题,把自己的能力展现在其中,十一期间和同学们一起学习.讨论,大家都提高很大,各科谈一下自己的心得 数学: 数学相对来说还是不难 ...
- 集群技术(二) MySQL集群简介与配置详解
when?why? 用MySQL集群? 减少数据中心结点压力和大数据量处理(读写分离),采用把MySQL分布,一个或多个application对应一个MySQL数据库.把几个MySQL数据库公用的数据 ...