10pt MLE求助

P3376 【模板】网络最大流

```cpp inline int underDfs(int x,int r) ``` 不能加```inline```吧
by OI_AKed_me @ 2022-02-26 20:37:09


@[shenyuchuan](/user/576527) 加不加 $inline$ 都是一样的吧,函数加了 $inline$ 不是应该更快才对吗(猜测)
by Echoternity @ 2022-02-26 20:39:16


你后面有递归调用
by OI_AKed_me @ 2022-02-26 20:40:16


递归调用应该不能用```inline```
by OI_AKed_me @ 2022-02-26 20:40:49


@[shenyuchuan](/user/576527) 虽然明白了,但是去了 $inline$ 依然 $MLE$ 了
by Echoternity @ 2022-02-26 20:43:01


那可能是你宽搜搜爆了
by OI_AKed_me @ 2022-02-26 20:44:28


@[shenyuchuan](/user/576527) 感谢,调出来了 ``` cpp if(f[Edge[e].to]=f[x]+1&&Edge[e].val) ``` 打错了
by Echoternity @ 2022-02-26 20:47:37


|