1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
| #include<bits/stdc++.h> #define Tp template<typename Ty> #define Ts template<typename Ty,typename... Ar> #define W while #define I inline #define RI register int #define LL long long #define Cn const #define CI Cn int& #define gc getchar #define D isdigit(c=gc()) #define pc(c) putchar((c)) #define min(x,y) ((x)<(y)?(x):(y)) #define max(x,y) ((x)>(y)?(x):(y)) using namespace std; namespace Debug{ Tp I void _debug(Cn char* f,Ty t){cerr<<f<<'='<<t<<endl;} Ts I void _debug(Cn char* f,Ty x,Ar... y){W(*f!=',') cerr<<*f++;cerr<<'='<<x<<",";_debug(f+1,y...);} Tp ostream& operator<<(ostream& os,Cn vector<Ty>& V){os<<"[";for(Cn auto& vv:V) os<<vv<<",";os<<"]";return os;} #define gdb(...) _debug(#__VA_ARGS__,__VA_ARGS__) }using namespace Debug; namespace FastIO{ Tp I void read(Ty& x){char c;int f=1;x=0;W(!D) f=c^'-'?1:-1;W(x=(x<<3)+(x<<1)+(c&15),D);x*=f;} Ts I void read(Ty& x,Ar&... y){read(x),read(y...);} Tp I void write(Ty x){x<0&&(pc('-'),x=-x,0),x<10?(pc(x+'0'),0):(write(x/10),pc(x%10+'0'),0);} Tp I void writeln(Cn Ty& x){write(x),pc('\n');} }using namespace FastIO; Cn int N=3e5+10,P=1e5+10; int n,m,fa[P],s[P],Ans[N],p; struct Edge{int x,y,z,id;}e[N]; I bool cmp(Cn Edge& x,Cn Edge& y){return x.z<y.z;} I int GF(CI x){return x==fa[x]?x:fa[x]=GF(fa[x]);} struct node{int x,y,v;}; vector<node> stk; #define pb push_back I void M(RI x,RI y){(x=GF(x))^(y=GF(y))&&(s[x]<s[y]&&(swap(x,y),0),s[x]&1&&s[y]&1?n-=2,stk.pb((node){x,y,2}):stk.pb((node){x,y,0}),s[x]+=s[y],fa[y]=x,0);} I void R(CI o){W(stk.size()^o) s[stk.back().x]-=s[stk.back().y],fa[stk.back().y]=stk.back().y,n+=stk.back().v,stk.pop_back();} vector<int> G[N<<2]; class SegmentTree{ private: #define mid (l+r>>1) #define PT CI x=1,CI l=1,CI r=m #define LT x<<1,l,mid #define RT x<<11,mid+1,r I void U(CI L,CI R,CI v,PT){if(L>R) return ;if(L<=l&&r<=R) return void(G[x].pb(v));L<=mid&&(U(L,R,v,LT),0),R>mid&&(U(L,R,v,RT),0);} public: I void Q(PT){ RI o=stk.size();for(auto i:G[x]) M(e[i].x,e[i].y);G[x].clear(); if(l==r){W(n&&p<m) e[++p].id<=l&&(M(e[p].x,e[p].y),U(e[p].id,l-1,p),0);Ans[l]=n?-1:e[p].z;} else Q(RT),Q(LT);R(o); } }T; int main(){ freopen("edges.in","r",stdin),freopen("edges.out","w",stdout); RI i;for(read(n,m),i=1;i<=n;i++) fa[i]=i,s[i]=1; for(i=1;i<=m;i++) read(e[i].x,e[i].y,e[i].z),e[i].id=i; for(sort(e+1,e+m+1,cmp),T.Q(),i=1;i<=m;i++) writeln(Ans[i]);return 0; }
|