对tarjan小细节的疑惑

P2746 [USACO5.3] 校园网Network of Schools

您的出栈呢 ```cpp if(low[rt]==dfn[rt]){ int tp; scc_cnt++; do{ tp=stk.top(); stk.pop(); siz[scc_cnt]++; scc[tp]=scc_cnt; }while(tp!=rt); } ```
by __Remake__ @ 2023-07-19 02:06:27


您出栈没有 ```INSTK = 0```
by 北射天狼 @ 2023-10-03 11:42:39


|