#include using namespace std; int main(void) { struct edge { int from, cost, time; }; int N,C,V; cin >> N; cin >> C; cin >> V; int S[V],T[V],Y[V],M[V]; for(int i=0; i> S[i]; for(int i=0; i> T[i]; for(int i=0; i> Y[i]; for(int i=0; i> M[i]; vector< vector > e(V); for(int i=0; i