#P13341. [EGOI 2025] Monster-Go
[EGOI 2025] Monster-Go
题目描述
Helen and her friends have discovered an amazing new game for their phones. The game, called Monster-Go, is about catching monsters by walking to different monster nests outdoors. There are an infinite number of monsters of a single type available at each nest. When the friends arrive at a monster nest, each of them will catch and add the monster type at that nest to their collection. There are a total of different monster types that the friends can catch, numbered .
To make the game more exciting, the friends have decided that each player will have a personalized list of exactly monster types to collect. The first person to catch all the monsters on their list wins the game. They want to design the lists in such a way that, no matter the order in which they visit the monster nests, there is always a single, unique winner – never a tie. The friends always walk around together as a group and arrive together at a monster nest.
Can you help them design the lists? Your score will depend on the number of values of , the number of people playing, for which you are able to solve the problem.
输入格式
The first and only line of input contains the integer , the number of players.
输出格式
Output lines, where the th line has distinct integers (where ) representing the monster types on the list of person . If there are multiple solutions, you may print any of them.
2
0 1 2 3 4 5 6 7 8 9 10 11
38 39 40 41 42 43 44 45 46 47 48 49
提示
Example
In the sample, where there are friends, the program should output two lists. Indeed, for the two lists in the sample output, the friends cannot both win at the same time, no matter the order in which they visit the monster nests. Note that there are many other valid answers.
Constraints and Scoring
- .
Your solution will be tested on a set of test groups, each worth a number of points. The th test group contains a single test case with and is worth 2 points. That is, there are a total of 50 tests (one for each ), and your score on this problem is twice the number of tests your program solves.
Group | Score | Limits |
---|---|---|
1 | 2 | |
2 | ||
3 | ||
49 | 2 | |
50 |