RT。
在跑 tarjan 的时候,我将 col[v] = tot; 写成了 col[tot] = v;(即记录强连通分量的时候变量写反了),喜提 404040 pts。
col[v] = tot;
col[tot] = v;