#include using namespace std; #define _p(...) (void)printf(__VA_ARGS__) #define forr(x,arr) for(auto&& x:arr) #define _overload3(_1,_2,_3,name,...) name #define _rep2(i,n) _rep3(i,0,n) #define _rep3(i,a,b) for(int i=int(a);i=int(a);i--) #define rrep(...) _overload3(__VA_ARGS__,_rrep3,_rrep2,)(__VA_ARGS__) #define all(x) (x).begin(),(x).end() #define bit(n) (1LL<<(n)) #define sz(x) ((int)(x).size()) #define fst first #define snd second string DBG_DLM(int &i){return(i++==0?"":", ");} #define DBG_B(exp){int i=0;os<<"{";{exp;}os<<"}";return os;} templateostream&operator<<(ostream&os,vectorv); templateostream&operator<<(ostream&os,setv); templateostream&operator<<(ostream&os,queueq); templateostream&operator<<(ostream&os,priority_queueq); templateostream&operator<<(ostream&os,pairp); templateostream&operator<<(ostream&os,mapmp); templateostream&operator<<(ostream&os,unordered_mapmp); templatevoid DBG(ostream&os,TPL t){} templatevoid DBG(ostream&os,TPL t){os<<(I==0?"":", ")<(t);DBG(os,t);} templatevoid DBG(ostream&os,pairp,string delim){os<<"("<ostream&operator<<(ostream&os,tuplet){os<<"(";DBG<0,tuple,Ts...>(os,t);os<<")";return os;} templateostream&operator<<(ostream&os,pairp){DBG(os,p,", ");return os;} templateostream&operator<<(ostream&os,vectorv){DBG_B(forr(t,v){os<ostream&operator<<(ostream&os,sets){DBG_B(forr(t,s){os<ostream&operator<<(ostream&os,queueq){DBG_B(for(;q.size();q.pop()){os<ostream&operator<<(ostream&os,priority_queueq){DBG_B(for(;q.size();q.pop()){os<ostream&operator<<(ostream&os,mapm){DBG_B(forr(p,m){os<");});} templateostream&operator<<(ostream&os,unordered_mapm){DBG_B(forr(p,m){os<");});} #define DBG_OVERLOAD(_1,_2,_3,_4,_5,_6,macro_name,...)macro_name #define DBG_LINE(){char s[99];sprintf(s,"line:%3d | ",__LINE__);cerr<;using pll=pair;using pil=pair;using pli=pair; using vs=vector;using vvs=vector;using vvvs=vector; using vb=vector;using vvb=vector;using vvvb=vector; using vi=vector;using vvi=vector;using vvvi=vector; using vl=vector;using vvl=vector;using vvvl=vector; using vd=vector;using vvd=vector;using vvvd=vector; using vpii=vector;using vvpii=vector;using vvvpii=vector; templatebool amax(T&a,const T&b){return abool amin(T&a,const T&b){return a>b?a=b,1:0;} ll ri(){ll l;cin>>l;return l;} string rs(){string s;cin>>s;return s;} struct BICC { const int N; const vector > &E; vector > bridges; vector ord; vector comp; int count; BICC(const vector > &E) : N(E.size()), E(E), ord(N, -1), comp(N), count(0) { inS.resize(N); int time = 0; for (int v = 0; v < N; v++) { if (ord[v] == -1) { dfs(v, -1, time); bridges.pop_back(); } } } private: vector inS; stack S, roots; void dfs(int cur, int pre, int &time) { ord[cur] = time++; S.push(cur); inS[cur] = true; roots.push(cur); for (auto &nex : E[cur]) { if (ord[nex] == -1) dfs(nex, cur, time); else if (pre != nex && inS[nex]) while (ord[roots.top()] > ord[nex]) roots.pop(); } if (cur == roots.top()) { bridges.emplace_back(pre, cur); while (1) { int w = S.top(); S.pop(); inS[w] = false; comp[w] = count; if (cur == w) break; } roots.pop(); ++count; } } }; struct HLDecomposition { using Edge = int; using Graph = vector>; const int n; const vector> &G; vector vid, head, heavy, parent, depth, inv; HLDecomposition(const Graph &G, const int root = 0) : n(G.size()), G(G), vid(n, -1), head(n), heavy(n, -1), parent(n), depth(n), inv(n) { dfs(root, -1); bfs(root); } // 頂点属性の for_each void for_each(int u, int v, function f) { if (vid[u] > vid[v]) swap(u, v); f(max(vid[head[v]], vid[u]), vid[v]); if (head[u] != head[v]) for_each(u, parent[head[v]], f); } private: int dfs(int cur, int pre) { parent[cur] = pre; int size = 1; int max_size = 0; for (auto nex : G[cur]) if (nex != pre) { depth[nex] = depth[cur] + 1; int nex_size = dfs(nex, cur); size += nex_size; if (max_size < nex_size) max_size = nex_size, heavy[cur] = nex; } return size; } void bfs(int root) { int k = 0; queue q({ root }); while (!q.empty()) { int h = q.front(); q.pop(); for (int i = h; i != -1; i = heavy[i]) { vid[i] = k++; inv[vid[i]] = i; head[i] = h; for (int j : G[i]) if (j != parent[i] && j != heavy[i]) q.push(j); } } } }; template struct SegmentTree { const int n; const V unit_value; vector val; SegmentTree(int _n) : n(1 << (33-__builtin_clz(_n-1))), unit_value(Merge::unit()), val(n, unit_value) {} V get(int i) const { return val[i + n / 2]; } void set(int i, const V &v) { val[i + n / 2] = v; } void build() { for (int i = n / 2 - 1; i > 0; i--) val[i] = Merge::merge(val[i * 2 + 0], val[i * 2 + 1]); } void update(int i, const V &v) { i += n / 2; val[i] = v; while (i > 1) { i >>= 1; val[i] = Merge::merge(val[i * 2 + 0], val[i * 2 + 1]); } } // [l, r) V query(int l, int r) const { l = max(0, min(n / 2, l)) + n / 2; r = max(0, min(n / 2, r)) + n / 2; V ret = unit_value; for (; l < r; l >>= 1, r >>= 1) { if (l & 1) ret = Merge::merge(ret, val[l++]); if (r & 1) ret = Merge::merge(ret, val[--r]); } return ret; } }; template struct MergeRangeMaxQ { static V merge(const V &l, const V &r) { return l > r ? l : r; } static V unit() { return {-1, -1}; } }; void Main() { int n = ri(); int m = ri(); int q = ri(); vvi E(n); rep(i, m) { int u = ri()-1; int v = ri()-1; E[u].push_back(v); E[v].push_back(u); } BICC bicc(E); vvi T(bicc.count); forr(uv, bicc.bridges) { int u = bicc.comp[uv.fst]; int v = bicc.comp[uv.snd]; T[u].push_back(v); T[v].push_back(u); } vi g_to_t(n); rep(i, n) { g_to_t[i] = bicc.comp[i]; } int l = bicc.count; out(T); HLDecomposition hld(T); SegmentTree> seg(l); out(hld.vid); vector> pq(l); while(q--) { int t = ri(); if (t == 1) { int u = ri()-1; int w = ri(); int t = g_to_t[u]; out(u, t, w); pq[t].emplace(w); if (pq[t].top() == w) { seg.update(hld.vid[t], {w, t}); } } else { int u = ri()-1; int v = ri()-1; u = g_to_t[u]; v = g_to_t[v]; out(u, v); pii ma = {-1, -1}; hld.for_each(u, v, [&](int l, int r) { out(l, r); pii cand = seg.query(l, r+1); out(cand); amax(ma, cand); }); out(ma); cout << ma.fst << endl; if (ma.fst != -1) { int t = ma.snd; pq[t].pop(); out(pq[t]); int w = -1; if (pq[t].size()) w = pq[t].top(); seg.update(hld.vid[t], {w, t}); out(seg.get(hld.vid[t])); } } } } signed main() { cin.tie(nullptr); ios::sync_with_stdio(false); Main(); return 0; }