General
 
 
# Author Problem Lang Verdict Time Memory Sent Judged  
63985223 Practice:
Zory
1037E - 36 C++14 (GCC 6-32) Accepted 405 ms 49148 KB 2019-11-01 14:32:03 2019-11-01 14:32:03
→ Source
//Zory-2019
#include<bits/stdc++.h>
using namespace std;
namespace mine
{
    typedef long long ll;
    #define pr pair<int,int>
    #define FR first
    #define SE second
    #define MP make_pair
    #define PB push_back
    #define vc vector
    #define all(x) (x).begin(),(x).end()
    #define sz(x) ((int)(x).size())
    #define bin(x) (1ll<<(x))
    #define GG(x) if(x) {puts("error");exit(666);}
    #define fo(i,l,r) for(int i=(l),I=(r);i<=I;i++)
    #define fd(i,r,l) for(int i=(r),I=(l);i>=I;i--)
    ll qread()
    {
        ll ans=0,f=1;char c=getchar();
        while(c<'0' or c>'9') {if(c=='-')f=-1;c=getchar();}
        while('0'<=c and c<='9') ans=ans*10+c-'0',c=getchar();
        return ans*f;
    }
    void write(ll num)
    {
        if(num<0) putchar('-'),num=-num;
        if(num>=10) write(num/10);
        putchar('0'+num%10);
    }
    void write1(ll num){write(num);putchar(' ');}
    void write2(ll num){write(num);putchar('\n');}
    template<typename T> void chmax(T &x,const T y) {x=(x>y?x:y);}
    template<typename T> void chmin(T &x,const T y) {x=(x<y?x:y);}
    ll gcd(ll x,ll y){return y?gcd(y,x%y):x;}

    const int INF=0x3f3f3f3f;
    const int MOD=1e9+7;
    int mm(const int x){return x>=MOD?x-MOD:x;}
    template<typename T> void add(T &x,const int &y){x=(x+y>=MOD?x+y-MOD:x+y);}
    ll qpower(ll x,ll e,int mod=MOD){ll ans=1;GG(e<0)while(e){if(e&1)ans=ans*x%mod;x=x*x%mod;e>>=1;}return ans;}
    ll invm(ll x){return qpower(x,MOD-2);}
    const int N=1e6+10;

    set<int> to[N];
    int deg[N];
    int cnt,K;
    vc<int> todel;bool in[N];
    void erase(int x)
    {
        deg[x]--;
        if(!in[x] and deg[x]<K)
            in[x]=1,todel.PB(x);
    }
    int ans[N];vc<pr> edge;
	void main()
	{
        int n=qread(),m=qread();K=qread();cnt=n;
        fo(i,1,m)
        {
            int x=qread(),y=qread();edge.PB(MP(x,y));
            deg[x]++,deg[y]++;to[x].insert(y),to[y].insert(x);
        }
        fo(i,1,n) if(deg[i]<K) todel.PB(i),in[i]=1;
        fd(i,m-1,0)
        {
            while(sz(todel))
            {
                cnt--;int x=todel.back();todel.pop_back();
                for(auto y:to[x])
                    erase(y);
            }
            ans[i]=cnt;
            int x=edge[i].FR,y=edge[i].SE;
            if(!in[x] and !in[y])
                to[x].erase(y),erase(x),to[y].erase(x),erase(y);
        }
        fo(i,0,m-1) write2(ans[i]);
	}
};//(ans+MOD)%MOD
signed main()
{
    // freopen("a.in","r",stdin);
    srand(time(0));
    mine::main();
}
?
Time: ? ms, memory: ? KB
Verdict: ?
Input
?
Participant's output
?
Jury's answer
?
Checker comment
?
Diagnostics
?
Click to see test details