CS Academy Round41 BFS+DFS

本文介绍了一种根据给定的广度优先搜索(BFS)和深度优先搜索(DFS)顺序,重建简单无向图邻接表的方法。通过对比两个序列中第二个节点是否一致来判断解的存在性,并提供了一段实现该算法的C++代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目链接https://csacademy.com/contest/archive/task/bfs-dfs/

题目大意:给出一个无向图的BFS顺序以及DFS顺序,问原图的邻接表。

解题思路:如果bfs第二个和dfs第二个点不一样则输出-1,否则按照dfs顺序连边,按照bfs给每个点从1连一条边,然后输出即可

根本不用想什么谁是谁的孩子什么的。。

代码:

 1 const int maxn = 5000;
 2 int n;
 3 int bs[maxn], ds[maxn];
 4 vector<int> g[maxn];
 5 
 6 int main(){
 7     scanf("%d", &n);
 8     for(int i = 0; i < n; i++) scanf("%d", &bs[i]);
 9     for(int i = 0; i < n; i++) scanf("%d", &ds[i]);
10     if(n == 1){
11         puts("0");
12         return 0;
13     }
14     if(bs[1] != ds[1]) {
15         puts("-1");
16         return 0;
17     }
18     printf("%d\n", 2 * n - 3);
19     for(int i = 0; i < n - 1; i++) g[ds[i]].push_back(ds[i + 1]);
20     for(int i = 2; i < n; i++) g[1].push_back(bs[i]);
21     for(int i = 1; i <= n; i++){
22         for(int j = 0; j < g[i].size(); j++){
23             printf("%d %d\n", i, g[i][j]);
24         }
25     }
26 }

题目:

BFS-DFS

Time limit: 1000 ms
Memory limit: 128 MB

 

In this problem you are given the two orders of visiting the nodes in a BFS and a DFS, starting in node 11. Generate the edge list of a simple, undirected, connected graph corresponding to these orders.

Statement clarification

One of the standard ways of storing a graph is using adjacency lists. Usually, the input is given as a list of edges. The program reads the numbers of nodes and edges, creates an empty list for each node, and then proceeds to read the edges. When an edge (a, b)(a,b) is read, aa is appended to the list of bb and bb is appended to the list of aa. Consider the following input:

1
2
3
4
5
6
7
8
9
10
 
 
 
6 8
1 3
1 5
1 6
2 5
2 6
3 4
3 5
5 6
 
 
 
 

 

We have a graph with 66 nodes and 88 edges:

123456

And we create the following lists:

  • Node 11: [3, 5, 6][3,5,6
  • Node 22: [5, 6][5,6
  • Node 33: [1, 4, 5][1,4,5
  • Node 44: [3][3
  • Node 55: [1, 2, 3, 6][1,2,3,6
  • Node 66: [1, 2, 5][1,2,5

In this problem we are concerned with the two most popular algorithms for traversing a graph: the Breadth First Search (BFS) and the Depth First Search (DFS).

The BFS pushes the starting node in a queue. While the queue is not empty, we pop the first node from the queue, go through its adjacency list, and enqueue the unvisited neighbours.

The DFS is usually implemented as a recursive function. First we call the function for the starting node. For each call, we go through the adjacency list of the current node, and recursively call the function for the unvisited neighbours.

Notice that the order of visiting the nodes is uniquely determined for both algorithms.

Standard input

The first line contains a single integer NN, representing the number of nodes.

The second line contains a permutation of size NN, representing the order of visiting the nodes for the BFS.

The third line contains a permutation of size NN, representing the order of visiting the nodes for the DFS.

Standard output

If there is no solution, output -11.

Otherwise, print a single integer MM, representing the number of edges, on the first line.

Each of the next MM lines should contain two integers aa and bb representing two nodes that share an edge.

Constraints and notes

  • 1 \leq N \leq 40961N409
  • The number of edges MM should be at most 10^5105​​ 
  • The two permutations will always start with 1
  • The graph is considered to be undirected. Multiple edges and self loops are not allowed, and the graph should be connected.

 

InputOutputExplanation
6
1 3 5 6 4 2
1 3 4 5 2 6
8
1 3
1 5
1 6
2 5
2 6
3 4
3 5
5 6

The labels on the edges represent the indices in the output edges.

12345678123456

4
1 2 4 3
1 2 3 4
4
1 2
1 4
3 4
2 3

12341234

6
1 2 6 3 4 5
1 2 6 3 4 5
7
1 2
2 6
2 3
2 4
4 5
1 6
3 4

1234567123456

8
1 3 5 4 7 8 2 6
1 3 7 2 8 6 5 4
10
2 8
1 3
1 5
3 7
2 7
1 4
4 2
2 6
8 6
5 8

1234567891012345678

转载于:https://www.cnblogs.com/bolderic/p/7338106.html

电动汽车数据集:2025年3K+记录 真实电动汽车数据:特斯拉、宝马、日产车型,含2025年电池规格和销售数据 关于数据集 电动汽车数据集 这个合成数据集包含许多品牌和年份的电动汽车和插电式车型的记录,捕捉技术规格、性能、定价、制造来源、销售和安全相关属性。每一行代表由vehicle_ID标识的唯一车辆列表。 关键特性 覆盖范围:全球制造商和车型组合,包括纯电动汽车和插电式混合动力汽车。 范围:电池化学成分、容量、续航里程、充电标准和速度、价格、产地、自主水平、排放、安全等级、销售和保修。 时间跨度:模型跨度多年(包括传统和即将推出的)。 数据质量说明: 某些行可能缺少某些字段(空白)。 几个分类字段包含不同的、特定于供应商的值(例如,Charging_Type、Battery_Type)。 各列中的单位混合在一起;注意kWh、km、hr、USD、g/km和额定值。 列 列类型描述示例 Vehicle_ID整数每个车辆记录的唯一标识符。1 制造商分类汽车品牌或OEM。特斯拉 型号类别特定型号名称/变体。型号Y 与记录关联的年份整数模型。2024 电池_类型分类使用的电池化学/技术。磷酸铁锂 Battery_Capacity_kWh浮充电池标称容量,单位为千瓦时。75.0 Range_km整数表示充满电后的行驶里程(公里)。505 充电类型主要充电接口或功能。CCS、NACS、CHAdeMO、DCFC、V2G、V2H、V2L Charge_Time_hr浮动充电的大致时间(小时),上下文因充电方法而异。7.5 价格_USD浮动参考车辆价格(美元).85000.00 颜色类别主要外观颜色或饰面。午夜黑 制造国_制造类别车辆制造/组装的国家。美国 Autonomous_Level浮点自动化能力级别(例如0-5),可能包括子级别的小
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值