QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#392713#4000. Dynamic ReachabilityXun_xiaoyaoWA 2919ms16348kbC++143.6kb2024-04-17 19:42:342024-04-17 19:42:35

Judging History

你现在查看的是最新测评结果

  • [2024-04-17 19:42:35]
  • 评测
  • 测评结果:WA
  • 用时:2919ms
  • 内存:16348kb
  • [2024-04-17 19:42:34]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
int Qread()
{
	int x=0;char ch=getchar();
	while(ch<'0'||ch>'9') ch=getchar();
	while(ch>='0'&&ch<='9') x=x*10+(ch^48),ch=getchar();
	return x;
}
const int B=500;
typedef bitset<1000> Bt;
struct Edge{int nxt,poi,typ;}l[100010];
bool del[100010];
int edge_cnt,p[50010];
int n,m,q,u[100010],v[100010];
int op[510],qu[510],qv[510];
bool vis[50010],instk[50010];

int len[50010],stk[50010],top,scc_cnt;
int dfn[50010],low[50010],ind;
int bel[50010];
void Tarjan(int a)
{
	instk[a]=vis[a]=true;
	dfn[a]=low[a]=++ind;
	stk[++top]=a;
	for(int k=p[a];k;k=l[k].nxt) if(l[k].typ&&!del[k])
	{
		if(vis[l[k].poi])
		{
			if(instk[l[k].poi])
				low[a]=min(low[a],dfn[l[k].poi]);
		}
		else
		{
			Tarjan(l[k].poi);
			if(instk[l[k].poi])
				low[a]=min(low[a],low[l[k].poi]);
		}
	}
	if(low[a]==dfn[a])
	{
		scc_cnt++;
		while(top&&stk[top+1]!=a)
		{
			instk[stk[top]]=false,bel[stk[top]]=scc_cnt;
			top--;
		}
	}
}
Bt con[50010],f[1010],S[1010],VS;
vector<int> ed[50010];
int rd[50010];queue<int> Q;int rea;
int nd[1010],tot,ded[1010],edt;
void dfs(int a)
{
	// printf("dfs(%d)",a);
	VS[a]=0;
	for(int k=(f[a]&VS)._Find_first();k<=tot;k=(f[a]&VS)._Find_first()) dfs(k);
	for(int k=(S[a]&VS)._Find_first();k<=tot;k=(S[a]&VS)._Find_first()) dfs(k);
}
int main()
{
	n=Qread(),m=Qread(),q=Qread();
	for(int i=1;i<=m;i++)
	{
		u[i]=Qread(),v[i]=Qread();
		l[++edge_cnt].nxt=p[u[i]],l[edge_cnt].poi=v[i];
		l[edge_cnt].typ=true,p[u[i]]=edge_cnt;
	}
	for(int i=1,cnt;i<=q;)
	{
		cnt=1,edt=0,tot=-1;
		for(;cnt<=B&&i<=q;cnt++,i++)
		{
			op[cnt]=Qread();
			if(op[cnt]==1)
			{
				qu[cnt]=Qread(),del[qu[cnt]]=true;
				nd[++tot]=u[i];nd[++tot]=v[i];
				ded[++edt]=qu[cnt];
			}
			else
			{
				qu[cnt]=Qread(),qv[cnt]=Qread();
				nd[++tot]=qu[cnt];nd[++tot]=qv[cnt];
			}
		}

		// printf("------\n");

		sort(nd,nd+tot+1);
		tot=unique(nd,nd+tot+1)-nd-1;
		
		//build DAG B
		memset(vis,0,sizeof(vis));
		memset(stk,0,sizeof(stk));
		ind=scc_cnt=0;
		for(int a=1;a<=n;a++) if(!vis[a]) Tarjan(a);

		// printf("------\n");

		// for(int a=1;a<=n;a++) cerr<<a<<"==="<<bel[a]<<endl;

		for(int i=1;i<=scc_cnt;i++) vector<int>().swap(ed[i]);
		for(int a=1;a<=n;a++) for(int k=p[a];k;k=l[k].nxt)
			if(l[k].typ&&!del[k]&&bel[a]!=bel[l[k].poi])
				ed[bel[l[k].poi]].push_back(bel[a]),rd[bel[a]]++;
		
		for(int i=1;i<=scc_cnt;i++) con[i].reset();
		for(int i=0;i<=tot;i++) con[bel[nd[i]]][i]=1;
		
		for(int i=1;i<=scc_cnt;i++) if(rd[i]==0) Q.push(i);
		while(!Q.empty())
		{
			rea=Q.front();Q.pop();
			for(int v:ed[rea])
			{
				// cerr<<rea<<"->"<<v<<endl;

				rd[v]--,con[v]|=con[rea];
				if(rd[v]==0) Q.push(v);
			}
		}

		for(int i=0;i<=tot;i++) f[i]=con[bel[nd[i]]];
		for(int i=1;i<=edt;i++) if(l[ded[i]].typ)
			S[lower_bound(nd,nd+tot+1,u[ded[i]])-nd][lower_bound(nd,nd+tot+1,v[ded[i]])-nd]=1;
		
		// for(int i=0;i<=tot;i++)
		// {
		// 	cerr<<nd[i]<<" ";
		// 	for(int j=0;j<=tot;j++)
		// 		cerr<<f[i][j]<<" ";
		// 	cerr<<"|";
		// 	for(int j=0;j<=tot;j++)
		// 		cerr<<S[i][j]<<" ";
		// 	cerr<<endl;
		// }

		// printf("------\n");

		for(int i=1,tk;i<cnt;i++)
		{
			if(op[i]==1)
			{
				l[qu[i]].typ^=1;
				S[lower_bound(nd,nd+tot+1,u[qu[i]])-nd][lower_bound(nd,nd+tot+1,v[qu[i]])-nd].flip();
			}
			else
			{
				VS.set();

				// printf("%d %d\n",qu[i],qv[i]);

				dfs(lower_bound(nd,nd+tot+1,qu[i])-nd);
				tk=lower_bound(nd,nd+tot+1,qv[i])-nd;
				if(VS[tk]) printf("NO\n");
				else printf("YES\n");
			}
		}
	}

	
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 9920kb

input:

5 6 7
1 2
1 3
2 4
3 4
3 5
4 5
2 1 5
2 2 3
1 3
1 4
2 1 4
1 3
2 1 5

output:

YES
NO
NO
YES

result:

ok 4 lines

Test #2:

score: -100
Wrong Answer
time: 2919ms
memory: 16348kb

input:

50000 100000 100000
36671 44121
25592 44321
13226 46463
13060 25694
14021 20087
22881 38333
34655 47774
22868 26462
31154 48710
27491 32365
5874 47497
17622 28600
1886 14193
22315 23656
14973 22704
1335 25384
22612 34915
2852 48213
23334 25519
24342 28784
6238 36125
14598 39494
33069 34250
2123 3059...

output:

NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
...

result:

wrong answer 363rd lines differ - expected: 'NO', found: 'YES'