QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#97352 | #5672. Connectivity Problem | aguo123 | ML | 0ms | 0kb | C++14 | 682b | 2023-04-16 17:51:05 | 2023-04-16 17:51:09 |
Judging History
answer
#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include<cstring>
#include<map>
using namespace std;
typedef long long LL;
const int N=2e5+10;
int n,T;
int ans;
int p[1100];
int find(int x){
if(p[x]!=x)return p[x]=find(p[x]);
}
int main()
{
T=1;
while(T--){
ans=0;
cin>>n;
for(int i=0;i<=1000;i++)p[i]=i;
for(int i=1;i<=n;i++){
int a,b;
cin>>a>>b;
int pa=find(a),pb=find(b);
if(pa!=pb){
puts("N");
p[pa]=pb;
}else puts("Y");
}
// cout<<ans<<endl;
}
return 0;
}
详细
Test #1:
score: 0
Memory Limit Exceeded
input:
12 3 4 4 9 8 1 2 3 5 6 2 9 5 9 7 3 4 8 5 6 1 8 6 1