[Solution] Candies CodeChef Solution
Problem
Abhi is a salesman. He was given two types of candies, which he is selling in different cities.
For the prices of the candies to be valid, Abhi's boss laid down the following condition:
- A given type of candy must have distinct prices in all cities.
In his excitement, Abhi wrote down the prices of both the candies on the same page and in random order instead of writing them on different pages. Now he is asking for your help to find out if the prices he wrote are valid or not.
More formally, you are given an array of size . Find out whether it is possible to split into two arrays, each of length , such that both arrays consist of distinct elements.
Input Format
- The first line of input will contain a single integer , denoting the number of test cases.
- Each test case consists of two lines of input.
- The first line of each test case contains one integer , denoting the number of cities
- The second line contains space-separated integers — the elements of the array .
Output Format
For each test case output the answer on a new line — Yes
if the given array represents a valid list of prices, and No
otherwise.
Each letter of the output may be printed in either uppercase or lowercase, i.e, Yes
, YES
, and yEs
will all be treated as equivalent.
Explanation:
Test case : One valid way of assigning prices is as follows:
- The first candy can have a price of in city , in city , and in city .
- The second candy can have a price of in city , in city , and in city .
Since a valid assignment exists, the answer is "Yes".
Test case : No valid set of prices exists that could give this array, since would be repeated somewhere.
Test case : One way of splitting the prices is and .
Test case : No valid set of prices exists that could give this array.
No comments:
Post a Comment