#include #include #include #include #include #include #include #include #include using namespace std; set nodeset; vector > a; // set> m; // edge map mm; unordered_map visited; void AddDependency(unsigned int ModuleId, unsigned int DependModuleId) { m.insert(make_pair(ModuleId, DependModuleId)); } bool ModulesCycularDependency(unsigned int ModuleId) { int n = nodeset.size(); vector d; d.push_back((int)ModuleId); visited[ModuleId] = 1; while (!d.empty()) { int i = d.back(); d.pop_back(); for (int k = 0; k < a[i].size(); k++) { if (!visited.count(a[i][k])) { visited[a[i][k]] = 1; d.push_back(a[i][k]); } else { if (a[i][k] == ModuleId) { string output = (string)mm[ModuleId]; std::cout << output << " is false" << std::endl; visited.clear(); return true; } } } } string output = (string)mm[ModuleId]; std::cout << output << " is true" << std::endl; visited.clear(); return false; } void clear(void) { } int main() { string in; int count = 0; while(getline(cin, in), in != "") { size_t pos = in.find_first_of(','); if (pos != std::string::npos) { if (in[in.size() - 1] == ',') { int x = std::stoul(in.substr(1, pos - 1), nullptr, 16); int y = std::stoul(in.substr(pos+2, in.size() - 4 - pos), nullptr, 16); nodeset.insert(x); nodeset.insert(y); mm.insert(make_pair(x, in.substr(1, pos - 1))); mm.insert(make_pair(y, in.substr(pos + 2, in.size() - 4 - pos))); m.insert(make_pair(x, y)); //node.push_back(in.substr(1, pos - 1)); //node.push_back(in.substr(pos + 2, in.size() - 4 - pos)); } else { int x = std::stoul(in.substr(1, pos - 1), nullptr, 16); int y = std::stoul(in.substr(pos+2, in.size() - 3 - pos), nullptr, 16); nodeset.insert(x); nodeset.insert(y); mm.insert(make_pair(x, in.substr(1, pos - 1))); mm.insert(make_pair(y ,in.substr(pos + 2, in.size() - 3 - pos))); m.insert(make_pair(x, y)); } } if (in[in.size() - 1] != ',') break; } a.assign((int)nodeset.size(), vector()); for (auto& x : m) { a[x.first].push_back(x.second); } for (int i = 0; i < nodeset.size(); i++) { ModulesCycularDependency(i); } return 0; }
点赞 评论

相关推荐

今天周一休息,突发奇想写一篇阶段总结。如题,我已经去了一个和Java彻底毫无关联的行业。曾经我以为自己能在计算机行业发光发热,没想到刚入行一年多就当了逃兵。从最开始的热爱到现在一看到代码就厌恶,不知道自己经历了什么。所以我去干什么了?答案是:在成都当了租房销售。上班那会压力大了就念叨着去干租房中介,但是一直下不去这个决心,想着自己学了四年多的计算机知识,终究还是不甘心。终于在某一天准备八股文的时候,看着无数篇和工作内容关系不大的理论知识,那一刻下定决心,决定尝试一下销售行业,也算是给自己一个交代。后面阴差阳错的投了成都自如去当租房管家,没想到面试很顺利,在当天一百多个面试的人里面,我成为了为数不多通过的几个幸运儿之一。目前已经培训通过,正式入职,也开了单,也有压力但是每天过得很开心,真心喜欢那种和人交流的感觉,哪怕是最后没有选择找我租房。说这些也是想告诉那些大三,大四正在找Java实习而焦虑的同学:你们现在还年轻,选择很多,容错率也很高,可以尽情去尝试自己喜欢的行业和工作。不用因为某一次的面试没通过或者简历石沉大海而焦虑,更不用因为身边人都在挤编程的独木桥就强迫自己跟风。也算是自己的碎碎念吧,也希望自己能在新的领域取得一点小成就。也祝牛油工作顺利!
沉淀小子:干啥都不丢人啊,生存是必须要的,销售很考验一个人综合素质能力的,好的销售人脉和资源可不比写字楼的白领差啊
点赞 评论 收藏
分享
KKorz:是这样的,还会定期默写抽查
点赞 评论 收藏
分享
牛客网
牛客网在线编程
牛客网题解
牛客企业服务