QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#573169 | #9310. Permutation Counting 4 | pingzhou | WA | 1ms | 3616kb | C++14 | 671b | 2024-09-18 17:35:02 | 2024-09-18 17:35:03 |
Judging History
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'