#P7035. [USACO][2009][MAR][G] Cleaning Up

[USACO][2009][MAR][G] Cleaning Up

Description

In the good old days, Farmer John served a boring cuisine comprising but a single type of cow food to his N (1 <= N <= 40000) prize dairy cows. Times change. Today he serves the herd a total of M (1 <= M <= N) different types of food (conveniently numbered 1..M).

The cows are picky. Cow i has a single food preference PiP_i (1 <= PiP_i <= M) and will eat only that favorite food.

Each day at feeding time FJ converts the barn into a tastefully lit cafeteria. The cows line up outside to enter the cafeteria in order of their previously-mentioned convenient index number.

Unfortunately, with so many types of food, cleaning up afterwards is very time-consuming. If Farmer John is serving K different types of food, it takes him K*K units of time to clean the barn.

To save time, FJ serves the cows in contiguous groups from the line. After each group, he cleans up the barn and sets out the food for the next group (of course, he only sets out food that cows in the any given group will eat). Determine the minimum amount of total time FJ must spend cleaning the barn. Each group consists of the next contiguous group of cows from the line; each cow belongs to exactly one group; and the barn must be cleaned up after every group, including the last one.

Format

Input

  • Line 1: Two space-separated integers: N and M
  • Lines 2..N+1: Line i+1 contains a single integer: PiP_i

Output

  • Line 1: A single integer: the minimum amount of time FJ must spend cleaning the barn.

Samples

13 4
1
2
1
3
2
2
3
4
3
4
3
1
4

11

Details

INPUT DETAILS:

There are four types of food and thirteen cows in line. The first cow prefers type 1, the second type 2, the third type 1, etc.

OUTPUT DETAILS:

The first four groups contain one cow each. The fifth group contains two cows who prefer food #2 (requiring one unit of time). The sixth group contains cows preferring foods 3, 4, 3, 4, 3 (and requires four units of time to clean). The last two groups contain one cow each. The total time is 11.