CF234G.Practice

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Little time is left before Berland annual football championship. Therefore the coach of team "Losewille Rangers" decided to resume the practice, that were indefinitely interrupted for uncertain reasons. Overall there are nn players in "Losewille Rangers". Each player on the team has a number — a unique integer from 1 to nn . To prepare for the championship, the coach Mr. Floppe decided to spend some number of practices.

Mr. Floppe spent some long nights of his holiday planning how to conduct the practices. He came to a very complex practice system. Each practice consists of one game, all nn players of the team take part in the game. The players are sorted into two teams in some way. In this case, the teams may have different numbers of players, but each team must have at least one player.

The coach wants to be sure that after the series of the practice sessions each pair of players had at least one practice, when they played in different teams. As the players' energy is limited, the coach wants to achieve the goal in the least number of practices.

Help him to schedule the practices.

输入格式

A single input line contains integer nn ( 2<=n<=10002<=n<=1000 ).

输出格式

In the first line print mm — the minimum number of practices the coach will have to schedule. Then print the descriptions of the practices in mm lines.

In the ii -th of those lines print fif_{i} — the number of players in the first team during the ii -th practice ( 1<=f_{i}<n ), and fif_{i} numbers from 11 to nn — the numbers of players in the first team. The rest of the players will play in the second team during this practice. Separate numbers on a line with spaces. Print the numbers of the players in any order. If there are multiple optimal solutions, print any of them.

输入输出样例

  • 输入#1

    2
    

    输出#1

    1
    1 1
    
  • 输入#2

    3
    

    输出#2

    2
    2 1 2
    1 1
    
首页