ejemplo
Grafo grafo(V);
int aristas = 0;
for (int v = 0; v < V; ++v)
for (int w : grafo.ady(v))
if (v < w) ++aristas;
cout << aristas << '\n';
Confused Crayfish