using System; using System.Collections.Generic; using System.Linq; using System.IO; using System.Runtime.CompilerServices; using System.Text; using static Template; using static System.Console; using static System.Convert; using static System.Math; using Pi = Pair; using Number = System.Int64; class Solver { public void Solve() { var num = Input.num; var ar = Input.ar; var l = RLEncoding(ar); var dp = new SegmentTree(l.Count + 1, 0, Max); dp.Update(1, l[0].v2); for (var i = 2; i <= l.Count; i++) dp.Update(i, dp.Query(0, i - 1) + l[i-1].v2); WriteLine(dp.Query(0, l.Count + 1)); } public static List> RLEncoding(IList list) where T : IEquatable { var ret = new List> { new Pair(list[0], 1) }; for (var i = 1; i < list.Count; i++) if (ret.Last().v1.Equals(list[i])) ret[ret.Count - 1].v2++; else ret.Add(new Pair(list[i], 1)); return ret; } } public class SegmentTree { protected readonly T[] item; protected readonly int num; protected readonly Func func; protected readonly Func updateFunc; protected readonly T init; [MethodImpl(MethodImplOptions.AggressiveInlining)] protected int Parent(int index) => (index - 1) >> 1; [MethodImpl(MethodImplOptions.AggressiveInlining)] protected int Left(int index) => (index << 1) + 1; [MethodImpl(MethodImplOptions.AggressiveInlining)] protected int Right(int index) => (index + 1) << 1; public T this[int i] { get { return item[i + num - 1]; } set { item[i + num - 1] = value; } } public SegmentTree(int num, T init, Func func, Func updateFunc = null) { this.func = func; this.num = 1; this.init = init; this.updateFunc = updateFunc ?? ((T val1, T val2) => val2); while (this.num <= num) this.num *= 2; item = new T[2 * this.num - 1]; for (var i = 0; i < 2 * this.num - 1; i++) item[i] = init; } public void Update(int index, T value) { index += num - 1; item[index] = updateFunc(item[index], value); while (index > 0) { index = Parent(index); item[index] = func(item[Left(index)], item[Right(index)]); } } public virtual void Update(int left, int right, T value) => Update(left, right, 0, 0, num, value); protected virtual void Update(int left, int right, int k, int l, int r, T value) { if (r <= left || right <= l) return; if (left <= l && r <= right) item[k] = updateFunc(item[k], value); else { Update(left, right, Left(k), l, (l + r) >> 1, value); Update(left, right, Right(k), (l + r) >> 1, r, value); } } public void All_Update() { for (int i = num - 2; i >= 0; i--) item[i] = func(item[Left(i)], item[Right(i)]); } public T Query(int index) { index += num - 1; var value = func(init, item[index]); while (index > 0) { index = Parent(index); value = func(value, item[index]); } return value; } public virtual T Query(int left, int right) => Query(left, right, 0, 0, num); protected virtual T Query(int left, int right, int k, int l, int r) { if (r <= left || right <= l) return init; if (left <= l && r <= right) return item[k]; else return func(Query(left, right, Left(k), l, (l + r) >> 1), Query(left, right, Right(k), (l + r) >> 1, r)); } /// /// check(func(item[st]...item[i]))がtrueとなる最小のi /// public int Find(int st, Func check) { var x = init; return Find(st, check, ref x, 0, 0, num); } private int Find(int st, Func check, ref T x, int k, int l, int r) { if (l + 1 == r) { x = func(x, item[k]); return check(x) ? k - num + 1 : -1; } var m = (l + r) >> 1; if (m <= st) return Find(st, check, ref x, Right(k), m, r); if (st <= l && !check(func(x, item[k]))) { x = func(x, item[k]); return -1; } var xl = Find(st, check, ref x, Left(k), l, m); if (xl >= 0) return xl; return Find(st, check, ref x, Right(k), m, r); } } #region Template public class Template { [MethodImpl(MethodImplOptions.AggressiveInlining)] public static bool chmin(ref T num, T val) where T : IComparable { if (num.CompareTo(val) == 1) { num = val; return true; } return false; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static bool chmax(ref T num, T val) where T : IComparable { if (num.CompareTo(val) == -1) { num = val; return true; } return false; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void swap(ref T v1, ref T v2) { var t = v2; v2 = v1; v1 = t; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static T[] Create(int n, Func f) => Enumerable.Repeat(0, n).Select(_ => f()).ToArray(); public static void Fail() => Fail("No"); public static void Fail(T s) { Console.WriteLine(s); Console.Out.Close(); Environment.Exit(0); } static void Main(string[] args) { var sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }; Console.SetOut(sw); var p = new Solver(); for (var i = 1; i > 0; --i) p.Solve(); Console.Out.Flush(); } } public class Input { public static string read => Console.ReadLine().Trim(); public static int[] ar => read.Split(' ').Select(int.Parse).ToArray(); public static int num => Convert.ToInt32(read); public static long[] arL => read.Split(' ').Select(long.Parse).ToArray(); public static long numL => Convert.ToInt64(read); public static char[][] grid(int h) => Create(h, () => read.ToCharArray()); public static int[] ar1D(int n) => Create(n, () => num); public static long[] arL1D(int n) => Create(n, () => numL); public static string[] strs(int n) => Create(n, () => read); public static int[][] ar2D(int n) => Create(n, () => ar); public static long[][] arL2D(int n) => Create(n, () => arL); public static List[] edge(int n) => Create(n, () => new List()); public static void Make(out T1 v1, out T2 v2) { v1 = Next(); v2 = Next(); } public static void Make(out T1 v1, out T2 v2, out T3 v3) { Make(out v1, out v2); v3 = Next(); } public static void Make(out T1 v1, out T2 v2, out T3 v3, out T4 v4) { Make(out v1, out v2, out v3); v4 = Next(); } public static void Make(out T1 v1, out T2 v2, out T3 v3, out T4 v4, out T5 v5) { Make(out v1, out v2, out v3, out v4); v5 = Next(); } public static void Make(out T1 v1, out T2 v2, out T3 v3, out T4 v4, out T5 v5, out T6 v6) { Make(out v1, out v2, out v3, out v4, out v5); v6 = Next(); } static Input() { sc = new Queue(); dic = new Dictionary>(); dic[typeof(int)] = s => int.Parse(s); dic[typeof(long)] = s => long.Parse(s); dic[typeof(char)] = s => char.Parse(s); dic[typeof(double)] = s => double.Parse(s); dic[typeof(uint)] = s => uint.Parse(s); dic[typeof(ulong)] = s => ulong.Parse(s); dic[typeof(string)] = s => s; } private static Dictionary> dic; private static Queue sc; [MethodImpl(MethodImplOptions.AggressiveInlining)] public static T Next() { if (sc.Count == 0) foreach (var item in read.Split(' ')) sc.Enqueue(item); return (T)dic[typeof(T)](sc.Dequeue()); } public const int MOD = 1000000007; } public class Pair : IComparable> { public T1 v1; public T2 v2; public Pair() { v1 = default(T1);v2 = default(T2); } public Pair(T1 v1, T2 v2) { this.v1 = v1; this.v2 = v2; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public int CompareTo(Pair p) { var c = Comparer.Default.Compare(v1, p.v1); if (c == 0) c = Comparer.Default.Compare(v2, p.v2); return c; } public override string ToString() => $"{v1.ToString()} {v2.ToString()}"; } public class Pair : Pair, IComparable> { public T3 v3; public Pair() : base() { v3 = default(T3); } public Pair(T1 v1, T2 v2, T3 v3) : base(v1, v2) { this.v3 = v3; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public int CompareTo(Pair p) { var c = base.CompareTo(p); if (c == 0) c = Comparer.Default.Compare(v3, p.v3); return c; } public override string ToString() => $"{base.ToString()} {v3.ToString()}"; } #endregion