<br />题目很简单,直接bfs,只是有一点要注意,队列开大一点,或者用循环队列,因为每次只有一个出队列,而有三个入队列(有时候少于三个),rear增长的太快了<br />#include<iostream>using namespace std;#include<cstdio>#define N 100000int queue[N];int visited[100005];int bfs(int st,int ed){ int front=-1
Other
2023-09-24
40 点赞
0 评论
60 浏览