#include #include #define SELECTER(_1,_2,_3,SELECT,...) SELECT #define rep1(i,n) for(int i=0;i<(int)n;++i) #define rep2(i,a,n) for(int i=(int)a;i<(int)n;++i) #define rep(...) SELECTER(__VA_ARGS__,rep2,rep1)(__VA_ARGS__) #define RSELECTER(_1, _2, _3, RSELECT, ...) RSELECT #define rrep1(i,n) for(int i=(int)(n)-1;i>=0;--i) #define rrep2(i,a,n) for(int i=(int)(n)-1;i>=(int)a;--i) #define rrep(...) RSELECTER(__VA_ARGS__, rrep2, rrep1)(__VA_ARGS__) #define all(a) a.begin(),a.end() #define rall(a) a.rbegin(),a.rend() #define fi first #define se second #define PrintR LogOutput #ifdef _DEBUG #define Log(...) LogOutput(__VA_ARGS__) #else #define Log(...) #endif #define M_PI 3.14159265358979323846 using namespace std; using namespace atcoder; using ll=long long; using ld=long double; using pii=pair; using pll=pair; using pdd=pair; using tp=tuple; using tpll=tuple; using veci=vector; using vecpii=vector>; using vecll=vector; using vecpll=vector>; using vecpdd=vector>; using vecs=vector; using vecb=vector; using vecd=vector; using vectp=vector; using vectpll=vector; using mint=modint998244353; using mint10=modint1000000007; template istream& operator>>(istream& in, pair& a){return in >> a.first >> a.second;} template ostream& operator<<(ostream& out, const pair& a){return out << a.first << ' ' << a.second;} ostream& operator<<(ostream& out, const mint& a){return out << a.val();} ostream& operator<<(ostream& out, const mint10& a){return out << a.val();} ostream& operator<<(ostream& out, const modint& a){return out << a.val();} template ostream& operator<<(ostream& out, const vector& d){for(int i = 0 ; i < d.size() ; ++i) out << d[i] << (i == d.size() - 1 ? "" : " "); return out;} template pair operator+(const pair& a, const pair& b){return {a.fi + b.fi, a.se + b.se};} template pair operator-(const pair& a, const pair& b){return {a.fi - b.fi, a.se - b.se};} template inline bool chmax(T& a,T b){if(a inline bool chmin(T& a,T b){if(a>b) {a=b;return true;} return false;} bool Judge(int i, int j, int h, int w){return i < 0 || j < 0 || i >= h || j >= w;} bool PrintA(int i){cout<<(i ? "Yes" : "No")<::max() >> 2; constexpr int inf=numeric_limits::max() >> 1; constexpr ll MOD=998244353; const int vi[] = {0, 1, 0, -1}, vj[] = {1, 0, -1, 0}; template void LogOutput(Args&&... args){ stringstream ss; ((ss << args << ' '), ...); cout << ss.str().substr(0, ss.str().length() - 1) << endl; } template void LogOutput(vector>& data){for(auto d : data) LogOutput(d);} class HLD{ public: using P = std::pair; HLD(int n) : _n(n), _g(_n), _in(_n), _out(_n), _par(_n), _head(_n){} void add_edge(int a, int b){ assert(0 <= a && a < _n); assert(0 <= b && b < _n); _g[a].push_back(b); _g[b].push_back(a); } void init(int s = 0){ assert(0 <= s && s < _n); { std::vector sz(_n); dfs_sz(sz, s, -1); } int k = 0; dfs_hld(s, k); } template void set_v(int v, T value, const F& f){ assert(0 <= v && v < _n); f(_in[v], value); } template void set_e(int u, int v, T value, const F& f){ assert(0 <= u && u < _n); assert(0 <= v && v < _n); if(_in[u] > _in[v]) std::swap(u, v); f(_in[v], value); } template void set_sub_v(int v, T value, const F &f, int E = 0){ assert(0 <= v && v < _n); f(_in[v] + E, _out[v], value); } template void set_sub_e(int v, T value, const F& f){ assert(0 <= v && v < _n); set_sub_v(v, f, value, 1); } template void query_v(int u, int v, const F &f, int E = 0){ assert(0 <= u && u < _n); assert(0 <= v && v < _n); while(1){ if(_in[u] > _in[v]) std::swap(u, v); f(std::max(_in[u] + E, _in[_head[v]]), _in[v] + 1); if(_head[u] != _head[v]) v = _par[_head[v]]; else break; } } template void query_e(int u, int v, const F &f){ query_v(u, v, f, 1); } template void query_sub_v(int v, const F &f, int E = 0){ assert(0 <= v && v < _n); f(_in[v] + E, _out[v]); } template void query_sub_e(int v, const F& f){ query_sub_v(v, f, 1); } int lca(int u, int v){ assert(0 <= u && u < _n); assert(0 <= v && v < _n); while(1){ if(_in[u] > _in[v]) std::swap(u, v); if(_head[u] == _head[v]) return u; v = _par[_head[v]]; } } int In_v(int v){return _in[v];} private: int _n; std::vector> _g; std::vector _in, _out; std::vector _par; std::vector _head; void dfs_sz(std::vector& sz, int v, int p){ sz[v] = 1; _par[v] = p; for(int& nv : _g[v]) if(nv != p){ dfs_sz(sz, nv, v); sz[v] += sz[nv]; if(sz[nv] > sz[_g[v][0]]){ std::swap(nv, _g[v][0]); } } } void dfs_hld(int v, int& k){ _in[v] = k++; for(int nv : _g[v]) if(nv != _par[v]){ _head[nv] = (nv == _g[v][0] ? _head[v] : nv); dfs_hld(nv, k); } _out[v] = k; } }; int op(int a, int b){return max(a, b);} int ef(){return 0;} int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n, m; ll c;cin>>n>>m>>c; vector> e(m); priority_queue> q; rep(i, m){ auto& [a, b, c, d] = e[i]; cin>>a>>b>>c>>d; a--, b--; q.emplace(c, i); } HLD hld(n); dsu t(n); ll cs = 0; veci used; while(q.size()){ auto [p, i] = q.top(); q.pop(); auto [u, v, ct, d] = e[i]; if(t.same(u, v)) continue; used.push_back(i); t.merge(u, v); hld.add_edge(u, v); cs += p; } if(cs > c){ cout<<-1< sg(n); auto Set = [&](int i, int k){ sg.set(i, k); }; int res = 0; auto Query = [&](int l, int r){ chmax(res, sg.prod(l, r)); }; for(int i : used) hld.set_e(get<0>(e[i]), get<1>(e[i]), get<3>(e[i]), Set); int ans = 0; rep(i, m){ auto& [u, v, ct, p] = e[i]; res = 0; hld.query_e(u, v, Query); if(cs - res + ct <= c) chmax(ans, p); } cout<