CF250C.Movie Critics
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A film festival is coming up in the city N. The festival will last for exactly n days and each day will have a premiere of exactly one film. Each film has a genre — an integer from 1 to k .
On the i -th day the festival will show a movie of genre ai . We know that a movie of each of k genres occurs in the festival programme at least once. In other words, each integer from 1 to k occurs in the sequence a1,a2,...,an at least once.
Valentine is a movie critic. He wants to watch some movies of the festival and then describe his impressions on his site.
As any creative person, Valentine is very susceptive. After he watched the movie of a certain genre, Valentine forms the mood he preserves until he watches the next movie. If the genre of the next movie is the same, it does not change Valentine's mood. If the genres are different, Valentine's mood changes according to the new genre and Valentine has a stress.
Valentine can't watch all n movies, so he decided to exclude from his to-watch list movies of one of the genres. In other words, Valentine is going to choose exactly one of the k genres and will skip all the movies of this genre. He is sure to visit other movies.
Valentine wants to choose such genre x ( 1<=x<=k ), that the total number of after-movie stresses (after all movies of genre x are excluded) were minimum.
输入格式
The first line of the input contains two integers n and k ( 2<=k<=n<=105 ), where n is the number of movies and k is the number of genres.
The second line of the input contains a sequence of n positive integers a1 , a2 , ..., an ( 1<=ai<=k ), where ai is the genre of the i -th movie. It is guaranteed that each number from 1 to k occurs at least once in this sequence.
输出格式
Print a single number — the number of the genre (from 1 to k ) of the excluded films. If there are multiple answers, print the genre with the minimum number.
输入输出样例
输入#1
10 3 1 1 2 3 2 3 3 1 1 3
输出#1
3
输入#2
7 3 3 1 3 2 3 1 2
输出#2
1
说明/提示
In the first sample if we exclude the movies of the 1st genre, the genres 2,3,2,3,3,3 remain, that is 3 stresses; if we exclude the movies of the 2nd genre, the genres 1,1,3,3,3,1,1,3 remain, that is 3 stresses; if we exclude the movies of the 3rd genre the genres 1,1,2,2,1,1 remain, that is 2 stresses.
In the second sample whatever genre Valentine excludes, he will have exactly 3 stresses.