JH BLOG
struct Edge { int u, v, w; Edge() :Edge(-1,-1,0) {} Edge(int u1,int v1,int w1) :u(u1), v(v1), w(w1) {} bool operator