#include #include #include #include using namespace std; struct edge { int u,v,w; char col; }ed[105]; int pre[2][105],num[2],ans[2],mark[2][105],pos[2]; bool operator<(edge a,edge b) { return a.w