Diff
Not logged in

Differences From Artifact [1f3d1cfa1b9a8b8a]:

To Artifact [b0ca04383cc7283f]:


2 2 //------------------------------------------------------------- 3 3 // Strongly Connected Component of a Directed Graph 4 4 // O(E) 5 5 // 6 6 // Verified by 7 7 // - SRM 499 Div1 LV3 8 8 // 9 -// Using "Spagetthi Source"'s one path algorithm 9 +// Using "Spagetthi Source"'s one pass algorithm 10 10 //------------------------------------------------------------- 11 11 12 12 template<typename T> 13 13 class IdGen 14 14 { 15 15 map<T, int> v2id_; 16 16 vector<T> id2v_;