蓝桥杯 网络寻路

题目理解: 找出图中连接的三条边,起点和终点可以相同,求有多少种,直接暴力来写


#include  
#include 
#include 
#include 

using namespace std;

const int N = 1e4+10;
vector vec[N]; 
int book[N]; 

int main()
{
	int n,m; 
	int u,v,ans = 0 ; 
	
	cin>>n>>m; 
	for ( int i=0; i


你可能感兴趣的:(思维题,搜索,DFS,&,BFS,图论)