Time Limit: 2000MS | Memory Limit: 32768KB | 64bit IO Format: %lld & %llu |
Description A small confusion in a problem set may ruin the whole contest. So, most of the problem setters try their best to remove any kind of ambiguity from the set. But sometimes it is not that important. For example, the mock contest of ICPC Dhaka Regional. As it is mock contest so we are not that serious with the set. We printed two problems, problem A in Page 1 and Problem B in Page 2. Then we remembered that we had to give rule of the contest too. Thus we printed the rule page. But we did not notice that the rule page was printed with Page 2. We were stapling 3 pages together. First rule page, then Problem A and at the last Problem B. So, the written page numbers were, 2, 1 and 2. This looked odd. But we already printed all the pages and if we want to fix the issue we had no other way but to print all the three pages. One among us suggested an explanation, "Well, first 2 means there are 2 pages after this page. 1 also means there is 1 page after this page. But the 2 in last page means there are 2 pages before this page." Interesting observation indeed! So we came up with a rule which is, page numberings of all the n pages are valid, if the page number at a page denotes number of page before this page or number of page after this page. So with this rule, {3, 1, 2, 0} is valid but {3, 3, 1, 3} is not valid. Input Input starts with an integer T (≤ 60), denoting the number of test cases. Each case starts with a line an integer n (1 ≤ n ≤ 10000) denoting the number of pages in the problem-set. The next line contains n space separated integers denoting the page number written on the pages. The integers lie in the range [0, 106]. Output For each case, print the case number and "yes" if the pages can be shuffled somehow to meet the given restrictions. Otherwise print "no". Sample Input 2 4 0 3 1 2 4 1 3 3 3 Sample Output Case 1: yes Case 2: no Source Problem Setter: Md. Mahbubul Hasan Special Thanks: Md. Towhidul Islam Talukder, Jane Alam Jan //题意:输入一个n,接下来输入n个数a[i] 输入的n个数a[i]表示在这个数前面有几个数或者是在这个数后面有几个数。 //思路: 将每个数的个数记录一下,再用一层for模拟每个位置应该放的数就行了
|