Breadth First Search
Write a program which reads an directed graph G=(V,E), and finds the shortest distance from vertex 1 to each vertex (the number of edges in the shortest path). Vertices are identified by IDs 1,2,...n.
Time Limit | 1 秒/Second(s) | Memory Limit | 512 兆字节/Megabyte(s) |
提交总数 | 0 | 正确数量 | 1 |
裁判形式 | 标准裁判/Standard Judge | 我的状态 | 尚未尝试 |
难度 | 分类标签 | STL |
Breadth First Search
Write a program which reads an directed graph G=(V,E), and finds the shortest distance from vertex 1 to each vertex (the number of edges in the shortest path). Vertices are identified by IDs 1,2,...n.
In the first line, an integer n denoting the number of vertices, is given. In the next n lines, adjacent lists of vertex u are given in the following format:
u k v1 v2 ... vk
u is ID of the vertex and k denotes its degree.vi are IDs of vertices adjacent to u.
4
1 2 2 4
2 1 4
3 0
4 1 3
1 0
2 1
3 2
4 1
本题记录 | 用 户(点击查看用户) | 运行号(点击购买题解) | 时 间 |
---|---|---|---|
算法最快[3 ms] | AOJ大管家 | 1163844 | 2025-01-14 19:38:45 |
内存最少[1448 KB] | AOJ大管家 | 1163844 | 2025-01-14 19:38:45 |
第一AC | AOJ大管家 | 1163844 | 2025-01-14 19:38:45 |
第一挑战 | AOJ大管家 | 1163844 | 2025-01-14 19:38:45 |
竞赛编号 | 竞赛名称 | 竞赛时间 | 访问比赛 |
---|