用map解决one to one关系

来源:互联网 发布:flow水刀软件 编辑:程序博客网 时间:2024/06/05 08:58
/*
(1)map函数表示的是映射的关系,其中下标相当于自变量,因此只能对应一个map的值
(2)对于判断关系是不是函数,可以用insert进行判断,注意insert(pair)以及返回的pair<map :: iterator , bool >类型
(3)one to one用加上y对x也只有一个
*/


#include <iostream>
#include <map>


using namespace std;


int main()
{
    int T ;
    cin >> T;
    while(T --)
    {
        int flag = 1 , n , m , x , y;
        map<int ,int> f , g;
        pair< map<int , int> :: iterator , bool > temp1 , temp2;
        cin >> n;
        cin >> m;
        for(int i = 0;i < m;i ++)
        {
            cin >> x;
            cin >> y;
            temp1 = f.insert(pair<int , int>(x,y));
            temp2 = g.insert(pair<int , int>(y,x));
            if(x > n || y > n || !temp1.second || !temp2.second)
                flag = 0;
        }
        if(flag)
            cout << "Yes" << endl;
        else
            cout << "No" << endl;
    }
    return 0;
}