题意:A与B进行交换,必须成对出现,例如有(A,B) 必须有(B,A),如果全部能交换输出YES,否则NO
思路1:输人时将所有数据以小的作为A大的作为B储存,排序后,遍历数组,按顺序每俩个比较,如果都可以相等说明YES,(1,2比较 3,4比较。。。。)否则NO
代码:
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
#define maxn 500005
struct change{
int a,b;
}stu[maxn];
bool cmp(change x,change y)
{
if(x.a == y.a)
return x.b < y.b;
return x.a < y.a;
}
vector<string>prt;
int main()
{
int n,x,y;
while(cin >> n && n)
{
for(int i=0;i<n;i++)
{
scanf("%d%d",&x,&y);
if(x > y)
{
stu[i].a = y;
stu[i].b = x;
}
else
{
stu[i].a = x;
stu[i].b = y;
}
}
if(n % 2)
{
printf("NO\n");
continue;
}
sort(stu,stu+n,cmp);
int flag = 1;
for(int i=0;i<n-1;i+=2)
{
if(stu[i].a != stu[i+1].a || stu[i].b != stu[i+1].b)
{
flag = 0;
break;
}
}
if(flag)
printf("YES\n");
else
printf("NO\n");
}
return 0;
}
思路2:如果俩俩成对出现的话,只需将所有的数计数,如果每个数都为偶数,说明为YES,否则NO
代码:
#include <iostream>
#include <string.h>
#include <cstdio>
using namespace std;
#define maxn 500005
int visit[maxn];
int main()
{
int n,a,b;
while(cin >> n&& n)
{
memset(visit,0,sizeof(visit));
int cotmax = 0;
for(int i=0;i<n;i++)
{
scanf("%d%d",&a,&b);
visit[a]++;
visit[b]++;
cotmax = max(cotmax,max(a,b));
}
if(n % 2)
{
printf("NO\n");
continue;
}
int flag = 1;
for(int i=0;i<cotmax;i++)
{
if(visit[i] % 2)
{
flag = 0;
break;
}
}
if(flag)
printf("YES\n");
else
printf("NO\n");
}
return 0;
}