UVA10763 Foreign Exchange

题目链接

题目大意:给定N对数字,形如(A,B),对于每一对数字,都要出现(B,A),则输出YES,否则输出NO

对于每一对数字,让小数在前,大数在后,然后再对所有数字排序,从第一个开始每两个判断,如果出现两对数字不一样就是NO,否则YES

代码如下:

#include 
#include 
#include 
#include 
using namespace std;
const int N=500005;
struct node
{
    int x;
    int y;
}data[N];
bool cmp(node a,node b)
{
    if(a.x==b.x)
        return a.ydata[i].y)
                swap(data[i].x,data[i].y);
        }
        if(n%2==1)
        {
            printf("NO\n");
            continue;
        }
        sort(data+1,data+1+n,cmp);
        int flag=1;
        for(int i=1;i+1<=n;i=i+2)
        {
            if(data[i].x!=data[i+1].x||data[i].y!=data[i+1].y)
            {
                flag=0;
                break;
            }
        }
        if(flag)
            printf("YES\n");
        else
            printf("NO\n");
    }
    return 0;
}


你可能感兴趣的:(UVA10763 Foreign Exchange)