UVA - 210:Concurrency Simulator

题目链接:https://vjudge.net/problem/UVA-210

题目分析

就是一道模拟题,但是细节有点多。
写代码两个小时,调试代码用了两天。。。很长时间不刷题了,这道虽然算法简单但是细节满满的题目对我来说是一个很好的热身。

  • 尽量不要去使用匿名名字空间,发现对调试过程不怎么友好(陈硕大大说的对)。
  • 使用枚举类型对程序的可读性、可维护性的提升非常大
  • 重载输入输出运算符的时候一定要记得返回stream对象
  • 这种带有switch语句的,可以使用Stragety模式,这里没有使用,因为每条语句只有执行,没有复杂的行为
  • 多组数据一定要有init函数清空数据
  • 使用智能指针不要用引用,这一点点内存的消耗不算什么,但是使用引用往往会带来错误:当我们在对象内部不小心将其释放掉的时候就会产生段错误,而且很难排查
  • 良好的抽象是巧妙设计的基础,每个类应该只负责其分内的事,不要尝试让其去做超过他权限的事,因为这样往往会让事情一团糟。封装、抽象能够帮助我们处理复杂的情况。
  • 通过ulimit -c unlimited命令开启生成core文件可以帮助进行调试
  • gdb调试开始的时候可以使用run < input.txt重定向输入和输出
  • cgdb真好用

AC代码

#include <iostream>
#include <array>
#include <vector>
#include <string>
#include <deque>
#include <memory>using namespace std;namespace {
enum TYPE {ASSIGN, PRINT, LOCK, UNLOCK, END
};
int n, quantum;constexpr int MAXN = 26;
array<int, MAXN> alpha = {};bool lock = false;
class Statement {
public:static constexpr int MAXN = 5;static array<int, MAXN> cost;static void init();string line;TYPE type;int var;int constant;int exec();friend istream& operator >> (istream& is, Statement &self);friend ostream& operator << (ostream& os, const Statement &self);
};class Program {
public:vector<Statement> statements;int idx = 0;int id;bool exec();Program(int _id) : id(_id) {}friend istream& operator >> (istream& is, Program& self);friend ostream& operator << (ostream& os, const Program &self);
};
deque<shared_ptr<Program>> readyQueue, blockedQueue;
shared_ptr<Program> p;ostream& operator << (ostream& os, const Statement &self) {
//    os << self.type;switch (self.type) {case ASSIGN:os << static_cast<char>('a' + self.var) << " = " << self.constant;break;case PRINT:os << "print " << static_cast<char>('a' + self.var);break;case LOCK:os << "lock";break;case UNLOCK:os << "unlock";break;case END:os << "end";break;}return os;
}ostream& operator << (ostream& os, const Program &self) {os << "ID:" << self.id << "\n";for (auto s : self.statements) {os << s << "\n";}os << "\n";return os;
}int Statement::exec() {switch (type) {case ASSIGN:
//        cout << "Test:" << line << endl;
//        cout << "Test:" << readyQueue.front()->id << " " << static_cast<char>('a' + var) << " = " << constant << endl;alpha[var] = constant;return cost[type];break;case PRINT:cout << p->id << ": " << alpha[var] << "\n";return cost[type];break;case END:
//        readyQueue.pop_front();
//        cout << "Test:" << type << " " << cost[type] << endl;
//        for (int i = 0; i < Statement::MAXN; ++i) {
//            cout << cost[i] << " ";
//        }
//        cout << endl;return cost[type];break;case LOCK:if (lock) {blockedQueue.push_back(p);return -1;} else {lock = true;return cost[type];}break;case UNLOCK:if (!blockedQueue.empty()) {readyQueue.push_front(blockedQueue.front());blockedQueue.pop_front();}lock = false;return cost[type];default:break;}
}bool Program::exec() {int time = quantum;while (time > 0) {int ret = statements[idx].exec();if (ret == -1) {//lockreturn false;}if (++idx == statements.size()) {//endreturn false;}time -= ret;}return true;
}constexpr int Statement::MAXN;
array<int, Statement::MAXN> Statement::cost;void Statement::init() {for (int i = 0; i < MAXN; ++i) cin >> cost[i];
}istream& operator >> (istream& is, Statement &self) {auto &line = self.line;getline(is, line);if (line[1] == ' ') {self.type = ASSIGN;self.var = line[0] - 'a';self.constant = stoi(line.substr(4));} else if (line[0] == 'p') {self.type = PRINT;self.var = line[6] - 'a';} else if (line[0] == 'l') {self.type = LOCK;} else if (line[0] == 'u') {self.type = UNLOCK;} else {self.type = END;}return is;
}
istream& operator >> (istream& is, Program& self) {auto &s = self.statements;do {s.push_back(Statement());is >> s.back();} while(s.back().type != END);return is;
}}void init() {readyQueue.clear();blockedQueue.clear();std::fill(alpha.begin(), alpha.end(), 0);lock = false;
}int main(int argc, char *argv[])
{ios::sync_with_stdio(false);int T, id = 0;cin >> T;for (int caseIdx = 0; caseIdx < T; ++caseIdx) {if (caseIdx) cout << "\n";init();cin >> n;Statement::init();cin >> quantum;string line;getline(cin, line);for (int i = 0; i < n; ++i) {readyQueue.push_back(make_shared<Program>(i + 1));cin >> *readyQueue.back();}
//        for (auto p : readyQueue) {
//            cout << *p;
//        }while (!readyQueue.empty()) {//TODO:加上了&导致出错p = readyQueue.front();readyQueue.pop_front();if (p->exec()) {readyQueue.push_back(p);}
//            cout << "Test:[readyQueue]\n";
//            for (auto p : readyQueue) {
//                cout << *p;
//            }
//            cout << "Test:[blockedQueue]\n";
//            for (auto p : blockedQueue) {
//                cout << *p;
//            }
//            cout << flush;}
//        cout << "====================================\n";}return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/383525.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

UVA - 514:Rails

题目链接&#xff1a;https://vjudge.net/problem/UVA-514 题目分析 题目的意思是给一个栈输入一系列数据&#xff0c;在这个过程中可以出栈&#xff0c;看能否达到某个结果。 刚开始我觉得这个情况好多&#xff0c;因此不是用模拟&#xff0c;而应该观察结果本身。对于结果中…

UVA - 442:Matrix Chain Multiplication

题目链接&#xff1a;https://vjudge.net/problem/UVA-442 题目分析 题目的意思非常简单&#xff0c;就是给定一个矩阵乘法的表达式然后计算就可以了。随便写写 AC代码 #include <iostream> #include <deque> #include <vector> #include <string>…

leetcode869. 重新排序得到 2 的幂

题目连接&#xff1a;https://leetcode-cn.com/problems/reordered-power-of-2/ 题目分析 如果直接顺着题目的思路&#xff0c;得到数字n的全排列&#xff0c;然后再去判断其是不是2的幂是比较复杂的。 我们应该注意到&#xff0c;因为数字是可以随意排列的&#xff0c;因此所…

使用wireshark+ssh+tcpdump远程抓包

因为需要抓取远程服务器上的数据包&#xff0c;又不想使用tcpdump这种命令行工具进行&#xff08;用了wireshark后谁还愿意去看密密麻麻的命令行呢&#xff09;&#xff0c;所以在网上查找了一下使用wireshark远程抓包的方法&#xff0c;在这里记录一下。 原生支持 wireshark…

C++ Variadic Templates(可变参数模板)

本文参考侯捷老师的视频&#xff1a;https://www.youtube.com/watch?vTJIb9TGfDIw&listPL-X74YXt4LVYo_bk-jHMV5T3LHRYRbZoH 以及C primer第五版 相关内容。 可变参数模板函数 //递归的终止条件 void print() {} //Variadic Templates //一般用于递归处理 template <…

Ubuntu修复Fix Busybox Initramfs错误

今天早上我打开电脑&#xff0c;进入Ubuntu系统&#xff0c;结果黑屏了&#xff0c;屏幕显示&#xff1a; BusyBox v1.30.1 (Ubuntu 1:1.30.1-4ubuntu6.1) built-in shell (ash) Enter help for a list of built-in commands.(initramfs)然而我并不知道这个是什么意思&#x…

Leetcode第284场周赛

绪论 最近发现Leetcode每周的周赛难度挺适合我的&#xff0c;而且时间也比较友好&#xff08;不像Codeforces每次都是半夜&#xff09;。所以连续参加了三周的周赛。这次才想起来应该记录一下自己的参赛历程。一方面是总结经验&#xff0c;另一方面有了记录就更有动力去提升&a…

Leetcode第286场周赛

绪论 上周因为有事没有参加周赛&#xff0c;这周没有错过。这次周赛拿到了人生第一个AK&#xff0c;参加大大小小的比赛这么多次&#xff0c;从来没有AK过&#xff0c;泪目了。 感觉这次比赛的思维难度对我来讲稍高一些&#xff0c;前三道题就花了一个小时&#xff0c;而以往…

第287场周赛

绪论 虽然是上周日参加的比赛&#xff0c;但是这周没有怎么学习&#xff0c;每天就是玩耍。也导致对周赛的总结迟迟没有进行。想着再拖下去下次周赛都要开始了&#xff0c;在这里补一下。 这场比赛总体比上场简单一些&#xff0c;但是最后一道题因为忘记初始化类内变量导致调试…

第288场周赛

绪论 虽然没有AK&#xff0c;但是不知道为什么排名比以前AK了都靠前。可能是因为最后一道题有些难度&#xff0c;缩小了我和大佬之间的差距。最后一个小时写最后一道题&#xff0c;累死累活想了一个贪心遍历的算法&#xff0c;当时是一直RE&#xff0c;后来下来调了调又WA了。 …

Clion远程部署和运行

绪论 作为Clion的忠实粉丝&#xff0c;现在的我的几乎所有的coding都是通过Clion完成。因为需要在服务器上进行开发&#xff0c;又离不开Clion&#xff0c;就了解了如何通过Clion远程部署和开发。 主要是借鉴了博客&#xff1a;使用Clion优雅的完全远程自动同步和远程调试c。如…

C++ 单例模式 call_once : terminate called after throwing an instance of ‘std::system_error‘

在学习了C中可以使用call_once进行初始化资源后&#xff0c;我就想着写一个单例模板供以后使用。 template<typename T> class SingleTon {using Ptr std::shared_ptr<T>;static Ptr p;static std::once_flag flag;template<typename ...Args>static void …

C++读写锁造成死锁

C14支持std::shared_timed_mutex C17支持std::shared_mutex 前者相比后者支持的操作更多&#xff0c;但是后者相对性能更好。 使用std::lock_guard<std::shared_mutex>和std::unique_lock<std::shared_mutex>互斥访问使用std::shared_lock<std::shared_mutex…

每日一题:449. 序列化和反序列化二叉搜索树

题目分析 题目链接&#xff1a;449. 序列化和反序列化二叉搜索树 觉得序列化很简单&#xff0c;前序遍历、后序遍历、中序遍历、层序遍历等等。其中得到前序遍历和后序遍历是可以通过递归解法反序列化的&#xff0c;觉得这样子做有点复杂。就想着可不可以一次遍历。一次遍历的…

C++高效集合数据结构设计

绪论 在复杂算法实现过程中我们经常会需要一个高效的集合数据结构&#xff0c;支持常数级别的增、删、查&#xff0c;以及随机返回、遍历&#xff0c;最好还能够支持交集、并集、子集操作 哈希集合实现 大家可能很快想到unordered_set&#xff0c;unordered_set由于底层是哈…

C++ 工具函数库

在写一些大型项目的过程中经常需要一些工具函数&#xff0c;例如获取随机数、计时器、打印函数、重要常量&#xff08;如最大值&#xff09;、信号与槽等&#xff0c;由于每一个工程都自己手动实现一个实在是太傻&#xff0c;我将其总结放入一个文件中。 utils.h // Copyright…

muduo网络库使用入门

muduo网络库介绍 muduo网络库是陈硕大神开发的基于主从Reactor模式的&#xff0c;事件驱动的高性能网络库。 网络编程中有很多是事务性的工作&#xff0c;使用muduo网络库&#xff0c;用户只需要填上关键的业务逻辑代码&#xff0c;并将回调注册到框架中&#xff0c;就可以实…

C++ map/unordered_map元素类型std::pair<const key_type, mapped_type>陷阱

在开发的过程中需要遍历一个unordered_map然后把他的迭代器传给另一个对象&#xff1a; class A; class B { public:void deal(const std::pair<int, A>& item); }; std::unordered_map<int, A> mp; B b; for (auto &pr : mp) {b.deal(pr); }在我的项目中…

Ubuntu install ‘Bash to dock‘

绪论 在Ubuntu环境搭建这篇博客中记录了使用Dash To Dock来配置Ubuntu的菜单项&#xff0c;使得实现macOS一样的效果。为了配置新电脑的环境&#xff0c;我还是想安装这个软件。但是如今在Ubuntu Software中已经找不到这个软件了&#xff0c;我在网上借鉴了一些博客的经验才得…

Leetcode第309场周赛

Date: September 4, 2022 Difficulty: medium Rate by others: ⭐⭐⭐⭐ Time consuming: 1h30min 题目链接 竞赛 - 力扣 (LeetCode) 题目解析 2399. 检查相同字母间的距离 class Solution {public:bool checkDistances(string s, vector<int>& distance) {vec…