ГлавнаяСборникиТурнирыРазделыФорумыУчастникиПечатьПомощьО системе

Сборники > Фёдор Меньшиков. Тренировки > задача:


50320 - Random Sorted List

Гость
• Вопросы к жюри (2)

Задачи сборника

• 51115 - Pascal Triangle
• 51116 - The Star Triangle
• 50303 - Pattern
• 50882 - FizzBuzz
• 50308 - IT Knowledge Seminars
• 50312 - Sales Bar Chart
• 50316 - Population Bar Chart
• 50313 - Pattern Displays
• 50320 - Random Sorted List
• 50336 - Buying Carpets
• 50338 - Convert Into Decimal
• 50295 - Weighted Average
• 50815 - Breaking the Bunker
• 50899 - How Many Years
• 50806 - TVSH
• 50820 - Post Office
• 50810 - Print Office

Обратная связь

Если у вас есть предложения или пожелания по работе Contester, посетите форум сайта www.contester.ru.

Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб.
Problem By Ibrahim Mesecan.

Random Sorted List

For his experiments, your professor wants to use sorted lists with n elements. The list will be produced randomly, but at the same time he needs the list to be sorted in ascending order.

Question: Write a program that that produces random but sorted list where

  • the list has n elements and
  • the difference between any two consecutive list elements is smaller than k (between 0 and k-1)
Note: Nearly all programming languages have a randum number function. For C/C++, you can use rand() function (from stdlib.h library) to produce a random number. For Example, in the statement:
  r = rand()%10;
r will have a random value between 0 and 9.

Input specification
You will be given 2 integers: n, k; where n is between 1 and 5000 and 1 ≤ k ≤ 50.

Output specification
(Assume that the previous number before the first number is 0) Show the sorted list separated by spaces

 Sample Input I   
  10 5
 Sample Input II   
  15 4
 Sample Output I   
  3 5 7 11 11 11 13 16 17 17   
 Sample Output II   
  2 4 7 10 12 14 17 18 20 20 23 23 23 24 25  


Для отправки решений необходимо выполнить вход.

www.contester.ru