#Lutece0805. Algorithm Homework
Algorithm Homework
Migrated from Lutece 805 Algorithm Homework
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Captain Chen used to be a naive boy. At that time he started to learn algorithm.
When he was learning the sort algorithm "bubble sort", he misunderstood the meaning of bubble. Let's see his code:
void sort(int a[], int n) {
for (int i = 0; i < n; ++ i)
for (int j = 0; j + 2 a[j + 2])
swap(a[j], a[j + 2]);
}
Now when he comes back to his code at that time, he finds it beautiful in some special way (though it is not correct).
Given an array a, can you tell Captain Chen whether his algorithm works at this case.
Input
The first line of the input contains an integer (), indicating the number of the elements in array.
The next lines contain integers (), indicating the element in the array.
Output
Output Yes
if Captain Chen's algorithm works perfectly on the array, otherwise output No
.
Samples
4
1 2 3 4
Yes
4
4 3 2 1
No
Resources
the 12th UESTC Programming Contest Final