A790.I Would Walk 500 Miles--Gold

普及+/提高

USACO

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Farmer John wants to divide his NN cows (N7500)(N \leq 7500), conveniently
numbered 1N1 \ldots N, into KK non-empty groups (2KN2 \leq K \leq N) such that
no two cows from two different groups can interact with each other without
walking some number of miles. Cow xx and Cow yy (where 1x<yN1 \leq x < y \leq N) are willing to walk (2019201913x+2019201949y) mod 2019201997(2019201913x + 2019201949y)\text{ mod } 2019201997
miles to see each other.
Given a division of the NN cows into KK non-empty groups, let MM 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 NN cows into KK groups such that
MM is as large as possible. The memory limit for this problem is set to
512MB, above the usual 256MB limit.

输入格式

The input is just one line, containing NN and KK, separated by a space.

输出格式

Print out MM in an optimal solution.

输入输出样例

  • 输入#1

    3 2
    

    输出#1

    2019201769
    

说明/提示

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, M=min(2019201817,2019201769)=2019201769M = \min(2019201817,2019201769) = 2019201769 (which is the best we can do here).

首页