#include using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template bool chmax(T &a, const T &b) { if(a bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N,M,K; vector> E[101010]; const ll mo=1000000007; ll num[2][101010]; set cand; void dfs(int cur,int v,int id) { cand.insert(cur); if(num[id][cur]!=-1LL<<60) { if(num[id][cur]!=v) { cout<<0<>N>>M>>K; K--; FOR(i,M) { cin>>x>>y>>k; k-=2; if(k<0) return _P("0\n"); E[x-1].push_back({y-1,k}); E[y-1].push_back({x-1,k}); } FOR(i,N) num[0][i]=num[1][i]=-1LL<<60; ll from[2]={1,0}; FOR(i,N) if(num[0][i]==-1LL<<60&&num[1][i]==-1LL<<60) { ll to[2]={0,0}; cand.clear(); dfs(i,0,0); if(num[1][i]==-1LL<<60) { ll L=0,R=K; FORR(c,cand) { ll a=num[0][c]; ll b=num[1][c]; if(a!=-1LL<<60) { L=max(L,-a); R=min(R,K-a); } else { L=max(L,b-K); R=min(R,b); } } if(L>R) { cout<<0<