#TENKA12018D. Crossing

Crossing

Score : 500500 points

Problem Statement

You are given an integer NN. Determine if there exists a tuple of subsets of {1,2,...N}\{1,2,...N\}, (S1,S2,...,Sk)(S_1,S_2,...,S_k), that satisfies the following conditions:

  • Each of the integers 1,2,...,N1,2,...,N is contained in exactly two of the sets S1,S2,...,SkS_1,S_2,...,S_k.
  • Any two of the sets S1,S2,...,SkS_1,S_2,...,S_k have exactly one element in common.

If such a tuple exists, construct one such tuple.

Constraints

  • 1N1051 \leq N \leq 10^5
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN

Output

If a tuple of subsets of {1,2,...N}\{1,2,...N\} that satisfies the conditions does not exist, print No. If such a tuple exists, print Yes first, then print such subsets in the following format:

kk

S1|S_1| S1,1S_{1,1} S1,2S_{1,2} ...... S1,S1S_{1,|S_1|}

::

Sk|S_k| Sk,1S_{k,1} Sk,2S_{k,2} ...... Sk,SkS_{k,|S_k|}

where Si=Si,1,Si,2,...,Si,SiS_i={S_{i,1},S_{i,2},...,S_{i,|S_i|}}.

If there are multiple such tuples, any of them will be accepted.

3
Yes
3
2 1 2
2 3 1
2 2 3

It can be seen that (S1,S2,S3)=({1,2},{3,1},{2,3})(S_1,S_2,S_3)=(\{1,2\},\{3,1\},\{2,3\}) satisfies the conditions.

4
No