QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#573169#9310. Permutation Counting 4pingzhouWA 1ms3616kbC++14671b2024-09-18 17:35:022024-09-18 17:35:03

Judging History

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

  • [2024-09-18 17:35:03]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3616kb
  • [2024-09-18 17:35:02]
  • 提交

answer

#include <bits/stdc++.h>
#define int long long
using namespace std;
const int N=1e6+10;
int f[N];
typedef pair<int,int> PII;

int find(int x)
{
	if(f[x]!=x) f[x]=find(f[x]);
	return f[x];
}

void solve() {
    int n;
	cin>>n;
	
	
	
	for(int i=1;i<=n;i++)f[i]=i;
	
	bool fe=true;
	
	for(int i=0;i<n;i++)
	{
		int l,r;
		cin>>l>>r;
		
		l--;
		if(find(l)!=find(r))
		{
			f[find(r)]=find(l);
			
		}
		else fe=false;
	}
	
	if(fe)cout<<"1\n";
	else cout<<"0\n";
}

signed main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int T=1;
    cin>>T;
    while(T--) {
        solve();
    }
    return 0;
}

詳細信息

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3616kb

input:

4
5
1 2
1 5
1 2
1 2
2 2
5
1 1
2 4
2 3
5 5
3 4
5
3 5
1 2
3 4
3 5
3 3
5
1 5
1 4
4 5
5 5
1 2

output:

0
0
0
0

result:

wrong answer 2nd words differ - expected: '1', found: '0'