码迷,mamicode.com
首页 > 其他好文 > 详细

CF1119A Ilya and a Colorful Walk

时间:2019-04-11 01:43:40      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:span   col   for   mat   walk   include   and   line   new   

题目地址:CF1119A Ilya and a Colorful Walk

\(O(n^2)\) 肯定过不掉

\(p_i\)从下标 \(1\) 开始连续出现 \(i\) 的个数

那么对于每一个 \(i\) ,在 \(i\) 之前离 \(i\) 最远的与 \(a_i\) 不同的数的距离显然为 \(i-p_{a_i}-1\)

\(max\) 就好了

#include <bits/stdc++.h>
using namespace std;
const int N = 3e5 + 6;
int n, a[N], p[N], ans;

int main() {
    cin >> n;
    for (int i = 1; i <= n; i++) scanf("%d", &a[i]);
    for (int i = 1; i <= n; i++)
        if (p[a[i]] == i - 1) p[a[i]] = i;
    for (int i = 1; i <= n; i++)
        ans = max(ans, i - p[a[i]] - 1);
    cout << ans << endl;
    return 0;
}

CF1119A Ilya and a Colorful Walk

标签:span   col   for   mat   walk   include   and   line   new   

原文地址:https://www.cnblogs.com/xht37/p/10687186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!