当前位置:网站首页>693. 行程排序
693. 行程排序
2022-07-07 01:08:00 【Ray.C.L】
思路:找起点(入度为0),遍历一遍
代码:
#include <iostream>
#include <cstring>
#include <algorithm>
#include <unordered_map>
#include <unordered_set>
using namespace std;
int main()
{
int T;
cin >> T;
for(int i = 1; i <= T; i ++){
int n;
cin >> n;
unordered_map<string, string> next;
unordered_set<string> S;
while(n --){
string a, b;
cin >> a >> b;
next[a] = b;
S.insert(b);
}
string head;
for(auto& [a, b] : next)
if(!S.count(a)){
head = a;
break;
}
printf("Case #%d: ",i);
while(next[head].size()){
cout << head << '-' << next[head] << ' ';
head = next[head];
}
cout << endl;
}
}
边栏推荐
- Check point: the core element for enterprises to deploy zero trust network (ztna)
- Chain storage of stack
- zabbix_ Get test database failed
- Jinfo of JVM command: view and modify JVM configuration parameters in real time
- 往图片添加椒盐噪声或高斯噪声
- [solved] record an error in easyexcel [when reading the XLS file, no error will be reported when reading the whole table, and an error will be reported when reading the specified sheet name]
- cf:C. Column Swapping【排序 + 模擬】
- 如果不知道这4种缓存模式,敢说懂缓存吗?
- @pathvariable 和 @Requestparam的详细区别
- What EDA companies are there in China?
猜你喜欢
随机推荐
Why does the data center need a set of infrastructure visual management system
搞懂fastjson 对泛型的反序列化原理
Red Hat安装内核头文件
改变ui组件原有样式
Nvisual network visualization
PTA 天梯赛练习题集 L2-003 月饼 测试点2,测试点3分析
Go language learning notes - Gorm use - Gorm processing errors | web framework gin (10)
Go语学习笔记 - gorm使用 - gorm处理错误 | Web框架Gin(十)
Career experience feedback to novice programmers
【SQL实战】一条SQL统计全国各地疫情分布情况
云加速,帮助您有效解决攻击问题!
话说SQLyog欺骗了我!
The boss always asks me about my progress. Don't you trust me? (what do you think)
Go语学习笔记 - gorm使用 - 原生sql、命名参数、Rows、ToSQL | Web框架Gin(九)
[InstallShield] Introduction
[FPGA tutorial case 14] design and implementation of FIR filter based on vivado core
Classic questions about data storage
STM32 key state machine 2 - state simplification and long press function addition
JVM命令之 jinfo:实时查看和修改JVM配置参数
Interview questions and salary and welfare of Shanghai byte