UVA-10763 Foreign Exchange

 1 #include <stdio.h>
 2 #include <iostream>
 3 #include <algorithm>
 4 #include <map>
 5 
 6 using namespace std;
 7 
 8 int main ()
 9 {
10     int N;
11     while(cin >> N && N != 0)
12     {
13         map<int,int> m;
14         while(N--)
15         {
16             int a,b;
17             cin >> a >> b;
18             if(m.count(a))
19             {
20                 m[a] --;
21             }
22             else
23             {
24                 m[a] = -1;
25             }
26             if(m.count(b))
27             {
28                 m[b] ++;
29             }
30             else
31             {
32                 m[b] = 1;
33             }
34         }
35         int flag = 1;
36         for(auto Ptr = m.begin();Ptr != m.end();Ptr ++)
37         {
38             if(Ptr->second!=0)
39             {
40                 flag = 0;
41                 break;
42             }
43         }
44         if(flag)
45             cout << "YES" << endl;
46         else
47             cout << "NO" << endl;
48     }
49     return 0;
50 }

 

转载于:https://www.cnblogs.com/Asurudo/p/9723709.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值