CodeKoreKhai's blog

By CodeKoreKhai, history, 5 years ago, In English

Here is my Submission link. i don't understand why my code give me Runtime error in case 15. please help me guys.

  • Vote: I like it
  • 0
  • Vote: I do not like it

| Write comment?
»
5 years ago, # |
  Vote: I like it +6 Vote: I do not like it
f1(i,n){
        int u, v;
        cin>> u >> v;
        g[u].pb(v);
        g[v].pb(u);
        edge.pb({u,v});
    }

It should be m instead of n.