QOJ.ac

QOJ

Time Limit: 1 s Memory Limit: 64 MB Total points: 100

#11050. Computation of a Road Network Plan

統計

Byteman is going for a car trip around Byteland, but he is unfortunately unable to buy a map of the country. From his friends he learned about some properties of the bytean road network:

  • There are $ n $ cities in Byteland, numbered from 1 to $ n $.
  • Each road is bidirectional and connects two different cities.
  • Each pair of different cities is connected by exactly one path, consisting of one ore more roads, on which no city appears more than once.
  • The longest path, on which no city appears more than once, consists of $ d $ roads.

Using information that he managed to collect, Byteman is going to try to reconstruct the road map of Byteland. The total number of theoretically possible road network plans satisfying the given conditions may be quite big, so any correct plan will be enough for Byteman.

Write a program that:

  • reads numbers $ n $ and $ d $ from the standard input,
  • computes any road network plan that is consistent with information collected by Byteman, or checks that no such plan exists,
  • writes the result to the standard output.

Input Format

The first and only line of input contains two integers $ n $ and $ d $ (2 ≤ $ n $ ≤ 200, 0 ≤ $ d $ < $ n $), separated with a single space.

Output Format

If no road network plan exists for the values of parameters $ n $ and $ d $ from the input, the first and only line of output should contain a single word BRAK (i.e. none in Polish). In the opposite case the output should consist of $ n $ - 1 lines. Each line should contain a description of one bidirectional road - two different integers in the range from 1 to $ n $, separated with a single space and denoting the numbers of cities connected by this road. The order of roads and numbers of cities connected by roads in the output can be arbitrary.

Example

Input

6 3

Output

1 3
2 3
3 4
4 5
4 6
problem_11050_1.gif

Discussions

About Discussions

The discussion section is only for posting: Editorials, General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues. Submitting multiple issues may cause your account to be banned.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.