码迷,mamicode.com
首页 > 其他好文 > 详细

UVA-10763 Foreign Exchange

时间:2018-09-29 15:25:49      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:cin   ptr   count   else   stream   amp   change   cond   name   

 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 }

 

UVA-10763 Foreign Exchange

标签:cin   ptr   count   else   stream   amp   change   cond   name   

原文地址:https://www.cnblogs.com/Asurudo/p/9723709.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!