#include <bits/stdc++.h>
using namespace std;
const int N = 1e5+10;
const int M = 2e5+10;
int h[N], e[M], ne[M], idx, w[M];
double p[M];
int cnt[N];
double E;
int n, m;
void add(int a, int b, int c) // 添加一条边a->b
{
p[idx] = 1, w[idx] = c, e[idx] = b, ne[idx] = h[a], h[a] = idx ++;
}
void dfs(int f, int u, int l, double P)
{
for(int k = h[u]; ~k; k = ne[k])
{
int j = e[k];
if(j == f) continue;
dfs(u, j, l+w[k], P*p[k]);
}
if(u == n) E += P * l;
}
int main()
{
scanf("%d%d", &n, &m);
memset(h, -1, sizeof h);
for(int i = 1; i <= m; i++)
{
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
add(a, b, c);
cnt[a]++;
}
for(int i = 1; i <= n; i++)
for(int k = h[i]; ~k; k = ne[k])
p[k] /= cnt[i];
dfs(-1, 1, 0, 1);
printf("%.2f", E);
return 0;
}
一、前言
基于 Spring Boot 3.x 版本开发,因为 Spring Boot 3.x 暂时没有正式发布,所以很少有 Spring Boot 3.x 开发的项目,自己也很想了踩踩坑,看看 Spring Boot 3.x 与 2.x 有什么区别。自己与记录一下在 Spring Boot 3.x 过程…