loj#P3511. 「USACO 2021 US Open Platinum」United Cows of Farmer John
「USACO 2021 US Open Platinum」United Cows of Farmer John
Description
The United Cows of Farmer John (UCFJ) are sending a delegation to the International bOvine olympIad (IOI). There are N cows participating in delegation selection (). They are standing in a line, and cow i has breed bi.
The delegation will consist of a contiguous interval of at least three cows - that is, cows for integers l and r satisfying and . Three of the cows in the chosen interval are marked as delegation leaders. For legal reasons, the two outermost cows of the chosen interval must be leaders. Moreover, to avoid intra-breed conflict, every leader must be of a different breed from the rest of the delegation (leaders or not).
Help the UCFJ determine (for tax reasons) the number of ways they might choose a delegation to send to the IOI. Two delegations are considered different if they have different members or different leaders.
Input
The first line contains .
The second line contains integers , each in the range .
Output
The number of possible delegations, on a single line.
Note that the large size of integers involved in this problem may require the use of 64-bit integer data types (e.g., a "long long" in C/C++).
7
1 2 3 4 3 2 5
9
Scoring
- Test cases 1-2 satisfy .
- Test cases 3-4 satisfy .
- Test cases 5-8 satisfy .
- Test cases 9-20 satisfy no additional constraints.
Problem credits: Benjamin Qi