CF1552G.A Serious Referee
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Andrea has come up with what he believes to be a novel sorting algorithm for arrays of length n . The algorithm works as follows.
Initially there is an array of n integers a1,a2,…,an . Then, k steps are executed.
For each 1≤i≤k , during the i -th step the subsequence of the array a with indexes ji,1<ji,2<⋯<ji,qi is sorted, without changing the values with the remaining indexes. So, the subsequence aji,1,aji,2,…,aji,qi is sorted and all other elements of a are left untouched.
Andrea, being eager to share his discovery with the academic community, sent a short paper describing his algorithm to the journal "Annals of Sorting Algorithms" and you are the referee of the paper (that is, the person who must judge the correctness of the paper). You must decide whether Andrea's algorithm is correct, that is, if it sorts any array a of n integers.
输入格式
The first line contains two integers n and k ( 1≤n≤40 , 0≤k≤10 ) — the length of the arrays handled by Andrea's algorithm and the number of steps of Andrea's algorithm.
Then k lines follow, each describing the subsequence considered in a step of Andrea's algorithm.
The i -th of these lines contains the integer qi ( 1≤qi≤n ) followed by qi integers ji,1,ji,2,…,ji,qi ( 1≤ji,1<ji,2<⋯<ji,qi≤n ) — the length of the subsequence considered in the i -th step and the indexes of the subsequence.
输出格式
If Andrea's algorithm is correct print ACCEPTED, otherwise print REJECTED.
输入输出样例
输入#1
4 3 3 1 2 3 3 2 3 4 2 1 2
输出#1
ACCEPTED
输入#2
4 3 3 1 2 3 3 2 3 4 3 1 3 4
输出#2
REJECTED
输入#3
3 4 1 1 1 2 1 3 2 1 3
输出#3
REJECTED
输入#4
5 2 3 2 3 4 5 1 2 3 4 5
输出#4
ACCEPTED
说明/提示
Explanation of the first sample:
The algorithm consists of 3 steps. The first one sorts the subsequence [a1,a2,a3], the second one sorts the subsequence [a2,a3,a4], the third one sorts the subsequence [a1,a2]. For example, if initially a=[6,5,6,3],the algorithm transforms the array as follows (the subsequence that gets sorted is highlighted in red)
[6,5,6,3]→[5,6,6,3]→[5,3,6,6]→[3,5,6,6]
One can prove that, for any initial array a, at the end of the algorithm the array a will be sorted.
Explanation of the second sample:
The algorithm consists of 3 steps. The first one sorts the subsequence [a1,a2,a3], the second one sorts the subsequence [a2,a3,a4], the third one sorts the subsequence [a1,a3,a4]. For example, if initially a=[6,5,6,3], the algorithm transforms the array as follows (the subsequence that gets sorted is highlighted in red)
[6,5,6,3]→[5,6,6,3]→[5,3,6,6]→[5,3,6,6]
Notice that a=[6,5,6,3] is an example of an array that is not sorted by the algorithm.
Explanation of the third sample:
The algorithm consists of 4 steps. The first 3 steps do nothing because they sort subsequences of length 1, whereas the fourth step sorts the subsequence [a1,a3]. For example, if initially a=[5,6,4], the algorithm transforms the array as follows (the subsequence that gets sorted is highlighted in red)
[5,6,4]→[5,6,4]→[5,6,4]→[5,6,4]→[4,6,5]
Notice that a=[5,6,4] is an example of an array that is not sorted by the algorithm.
Explanation of the fourth sample:
The algorithm consists of 2 steps. The first step sorts the subsequences [a2,a3,a4], the second step sorts the whole array [a1,a2,a3,a4,a5]. For example, if initially a=[9,8,1,1,1], the algorithm transforms the array as follows (the subsequence that gets sorted is highlighted in red)
[9,8,1,1,1]→[9,1,1,8,1]→[1,1,1,8,9]
Since in the last step the whole array is sorted, it is clear that, for any initial array a, at the end of the algorithm the array a will be sorted.