算法竞赛入门经典 第二版 习题5-4 交换学生 Foreign Exchange uva10763

题目:https://vjudge.net/problem/UVA-10763

思路:用学生的意向校映射来源校,用vector来保存每个意向校的学生的来源校,然后每次读取数据时查找是否有对应学校的学生想要交换,若有,则删去查找到的结果;若没有,将这条输入数据保存到映射中。最后判断映射是否为空就得出交换项目能否进行。
注:当映射的某个关键字对应的vector为空时,别忘把这个关键字删除。

代码:

#include <iostream>
#include <string>
#include <sstream>
#include <cstdio>
#include <iomanip>
#include <map>
#include <set>
#include <vector>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <deque>
using namespace std;

int main()
{
    map<int, vector<int> > student;
    int n;
    while(cin>>n)
    {
        if(n==0)
        {
            break;
        }
        student.clear();
        while(n--)
        {
            int from, to;
            cin >> from >> to;
            vector<int>::iterator it = find(student[to].begin(), student[to].end(), from);
            if(it==student[to].end())
            {
                student[from].push_back(to);
            }
            else
            {
                student[to].erase(it);
            }
            if(student[to].empty())
            {
                student.erase(to);
            }
        }
        if(student.empty())
        {
            printf("YES\n");
        }
        else
        {
            printf("NO\n");
        }
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值