Foreign Exchange (Exchange location), foreignexchange
Foreign Exchange
Your non-profit organization (iCORE-international Confederation of Revolver Enthusiasts) coordinates a very successful foreign student exchange program. over the last few years, demand has sky-rocketed and now you need maintenance ance with your task. the program your organization runs works as follows: All candidates are asked for their original location and the location they wocould like to go. the Program works out only if every student has a suitable exchange partner. in other words, if a student wants to go from A to B, there must be another student who wants to go from B to. this was an easy task when there were only about 50 candidates, however now there are up to 500000 candidates!
Input
The input file contains multiple cases. each test case will consist of a line containing n-the number of candidates (1 ≤ n ≤ 500000), followed by n lines representing the exchange information for each candidate. each of these lines will contain 2 integers, separated by a single space, representing the candidate's original location and the candidate's target location respectively. locations will be represented by nonnegative integer numbers. you may assume that no candidate will have his or her original location being the same as his or her target location as this wowould fall into the domestic exchange program. the input is terminated by a case where n = 0; this case shocould not be processed.
Output
For each test case, print 'yes' on a single line if there is a way for the exchange program to work out, otherwise print 'no '.
Sample Input
10
1 2
2 1
3 4
4 3
100 200
200 100
57 2
2 57
1 2
2 1
10
1 2
3 4
5 6
7 8
9 10
11 12
13 14
15 16
17 18
19 20
0
Sample Output
YES
NO
Question: Open two arrays s [I], t [I], and then sort the array data from small to large. If one-to-one matching can be used in a loop, the data can be exchanged, and the output is YES, otherwise, NO is output as long as there is an inequality.
# Include <iostream>
# Include <algorithm>
Using namespace std;
Int s [500000], t [500000]; // pay attention to the array size
Int main ()
{
Int n, I;
While (cin> n & n)
{
For (I = 0; I <n; I ++)
Cin> s [I]> t [I];
Sort (s, s + n); // sort
Sort (t, t + n );
Int f = 0;
For (I = 0; I <n; I ++)
{
If (s [I]! = T [I])
{
F = 1;
Break;
}
}
If (f)
Cout <"NO" <endl;
Else
Cout <"YES" <endl;
}
Return 0;
}