Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
48248 | MattL | 【AB-1】图 | C++ | 解答错误 | 20 | 1000 MS | 8264 KB | 807 | 2022-04-11 11:44:18 |
#include <bits/stdc++.h> using namespace std; inline long long read() { int x=0,f=1; char t=getchar(); while(t<'0'||t>'9'){if(t=='-')f=0;t=getchar();} while(t>='0'&&t<='9')x=(x<<1)+(x<<3)+(t^48),t=getchar(); return f?x:-x; } const int N=2e5+100; unsigned long long n,m,t,u,v,cntt[N],ans=1,ct[N]; bool bj[N]; vector<int> a[N]; int main() { // freopen("game.in","r",stdin); // freopen("game.out","w",stdout); n=read(),m=read(),t=read(); for(int i=1;i<=m;i++) u=read(),v=read(),a[u].push_back(v),ct[v]++; for(int i=2;i<=n;i++) ans*=ct[i]; cout<<ans<<endl; while(t--) { cin>>u>>v; ct[v]++; ans=1; for(int i=2;i<=n;i++) ans*=ct[i]; cout<<ans<<endl; } return 0; }