I Would Walk 500 Miles
문제
Farmer John wants to divide his cows , conveniently numbered , into non-empty groups () such that no two cows from two different groups can interact with each other without walking some number of miles. Cow and Cow (where ) are willing to walk miles to see each other.
Given a division of the cows into non-empty groups, let be the minimum of the number of miles any two cows in two different groups are willing to walk to see each other. To test the cows' devotion to each other, Farmer John wants to optimally divide the cows into groups such that is as large as possible.
입력
The input is just one line, containing and , separated by a space.
출력
Print out in an optimal solution.
힌트
In this example, Cow 1 and Cow 2 are willing to walk 2019201817 miles to see each other. Cow 2 and Cow 3 are willing to walk 2019201685 miles. And Cow 1 and Cow 3 are willing to walk 2019201769 miles. Thus, by grouping the cows such that 1 is by herself and 2 and 3 are grouped together, (which is the best we can do here).
예제
예제 1
3 2
2019201769