Johnny Solving

题意翻译

给出一张无重边的无向连通图(保证每个点度数大于等于 $3$)和一个限制 $k$ ,需要你构造以下两种情况中的一种: - 找出一条长度**至少**为 $\dfrac {n}{k}$ 的路径 - 找出 $k$ 个环,使得每个环的长度至少为 $3$ 而且不是 $3$ 的倍数,并且要求保证每个环中至少有一个点在这 $k$ 个环里只出现一次。

题目描述

Today is tuesday, that means there is a dispute in JOHNNY SOLVING team again: they try to understand who is Johnny and who is Solving. That's why guys asked Umnik to help them. Umnik gave guys a connected graph with $ n $ vertices without loops and multiedges, such that a degree of any vertex is at least $ 3 $ , and also he gave a number $ 1 \leq k \leq n $ . Because Johnny is not too smart, he promised to find a simple path with length at least $ \frac{n}{k} $ in the graph. In reply, Solving promised to find $ k $ simple by vertices cycles with representatives, such that: - Length of each cycle is at least $ 3 $ . - Length of each cycle is not divisible by $ 3 $ . - In each cycle must be a representative - vertex, which belongs only to this cycle among all printed cycles. You need to help guys resolve the dispute, for that you need to find a solution for Johnny: a simple path with length at least $ \frac{n}{k} $ ( $ n $ is not necessarily divided by $ k $ ), or solution for Solving: $ k $ cycles that satisfy all the conditions above. If there is no any solution - print $ -1 $ .

输入输出格式

输入格式


The first line contains three integers $ n $ , $ m $ and $ k $ ( $ 1 \leq k \leq n \leq 2.5 \cdot 10^5, 1 \leq m \leq 5 \cdot 10^5 $ ) Next $ m $ lines describe edges of the graph in format $ v $ , $ u $ ( $ 1 \leq v, u \leq n $ ). It's guaranteed that $ v \neq u $ and all $ m $ pairs are distinct. It's guaranteed that a degree of each vertex is at least $ 3 $ .

输出格式


Print PATH in the first line, if you solve problem for Johnny. In the second line print the number of vertices in the path $ c $ ( $ c \geq \frac{n}{k} $ ). And in the third line print vertices describing the path in route order. Print CYCLES in the first line, if you solve problem for Solving. In the following lines describe exactly $ k $ cycles in the following format: in the first line print the size of the cycle $ c $ ( $ c \geq 3 $ ). In the second line print the cycle in route order. Also, the first vertex in the cycle must be a representative. Print $ -1 $ if there is no any solution. The total amount of printed numbers in the output must be at most $ 10^6 $ . It's guaranteed, that if exists any solution then there is a correct output satisfies this restriction.

输入输出样例

输入样例 #1

4 6 2
1 2
1 3
1 4
2 3
2 4
3 4

输出样例 #1

PATH
4
1 2 3 4 

输入样例 #2

10 18 2
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
2 3
3 4
2 4
5 6
6 7
5 7
8 9
9 10
8 10

输出样例 #2

CYCLES
4
4 1 2 3 
4
7 1 5 6