Almost Arithmetical Progression

Description

Gena loves sequences of numbers. Recently, he has discovered a new type of sequences which he called an almost arithmetical progression. A sequence is an almost arithmetical progression, if its elements can be represented as:

  • a1 = p, where p is some integer;
  • ai = ai - 1 + ( - 1)i + 1·q(i > 1), where q is some integer.

Right now Gena has a piece of paper with sequence b, consisting of n integers. Help Gena, find there the longest subsequence of integers that is an almost arithmetical progression.

Sequence s1,  s2,  ...,  sk is a subsequence of sequence b1,  b2,  ...,  bn, if there is such increasing sequence of indexesi1, i2, ..., ik(1  ≤  i1  <  i2  < ...   <  ik  ≤  n), that bij  =  sj. In other words, sequence s can be obtained from b by crossing out some elements.

Input

The first line contains integer n(1 ≤ n ≤ 4000). The next line contains n integers b1, b2, ..., bn(1 ≤ bi ≤ 106).

Output

Print a single integer — the length of the required longest subsequence.

Sample Input

Input
2
3 5
Output
2
Input
4
10 20 10 30
Output
3

Hint

In the first test the sequence actually is the suitable subsequence.

In the second test the following subsequence fits: 10, 20, 10.




/*求最长的子序列,满足隔位的两个数相等*/
#include <cstdio>
#include <algorithm>


using namespace std;
const int MAXN = 4000 + 10;
int n;
int b[MAXN];
int dp[MAXN][MAXN];//定义状态dp[i][j]代表以第i个数为末尾,第j个数为倒数第二个的情况下的最长子序列。
int main()
{
    while (scanf("%d", &n) == 1)
    {
      for (int i = 1; i <= n; ++i)
    {
        scanf("%d", &b[i]);
    }
    int ret = 0;
    dp[0][0] = 0;
    for (int j = 1; j <= n; ++j)
    {
        for (int i = 0, last = 0; i < j; ++i)
        {
            dp[i][j] = dp[last][i] + 1;
            if (b[i] == b[j])
            {
                last = i;
            }
            ret = max(ret, dp[i][j]);
        }
    }
    printf("%d\n", ret);
    }
    return 0;
}



本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/509215.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

svn冲突解决方案

解决方法 步骤一、清空svn的队列 1、进入到项目的.svn目录中&#xff0c;查看是否存在wc.db文件 C:\Users\Administrator>D:D:\>cd D:\BBK_SVN\I3_TrunkD:\BBK_SVN\I3_Trunk>cd .svnD:\BBK_SVN\I3_Trunk\.svn>dirVolume in drive D has no label.Volume Serial Nu…

redis集群搭建与配置

redis集群搭建与配置

VS编译快捷键设置

1.编译当前文件----AltZ(生成.编译)&#xff1b; 2.编译当前项目----AltA(生成.仅生成项目)&#xff1b; 3.链接当前项目----AltX(生成.链接)&#xff1b; 4.生成选定内容----AltD(生成.生成选定内容)&#xff1b;

keepalived的安装与添加服务

keepalived的安装与添加服务

做一个“多人在线编辑器”,你会怎么开始

看似只是一个简单的问题&#xff0c;但是其中却隐含了非常多的知识&#xff0c;对于“多人在线编辑器”这么一个产品来说&#xff0c;如果让你来负责设计并开发&#xff0c;你会怎么去开始一步步展开工作&#xff0c;其中主要考察的并不是让你迅速的不假思索的说运用什么技术&a…

Mr. Bender and Square

Description Mr. Bender has a digital table of size n  n, each cell can be switched on or off. He wants the field to have at least c switched on squares. When this condition is fulfilled, Mr Bender will be happy. Well consider the table rows numbered from…

nginx_keepalived配置(转载保存)

文章链接&#xff1a; https://blog.csdn.net/yabingshi_tech/article/details/52038332

IT技术网站

GitChat : http://gitbook.cn/ CSDN: https://blog.csdn.net/nav/career 知乎&#xff1a; https://www.zhihu.com/ 简书&#xff1a; https://www.jianshu.com/ 程序师&#xff1a; http://www.techug.com/ 酷壳&#xff1a;https://www.baidu.com/link…

A Simple Job

描述 Institute of Computational Linguistics (ICL), Peking University is an interdisciplinary institute of science and liberal arts, it focuses primarily on the fundamental researches and applications of language information processing. The research of ICL …

keepalived+nginx保持高可用配置

安装nginx、keepalived nginx安装 keepalived安装与添加服务在/etc/keepalived目录下新建nginx_check.sh&#xff08;两台服务器都需要&#xff09; 配置keepalived.conf: #配置邮箱 global_defs {notification_email {# acassenfirewall.loc# failoverfirewall.loc# sysadmin…

How-To-Ask-Questions-The-Smart-Way

转自&#xff1a;https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/master/README-zh_CN.md 提问的智慧 How To Ask Questions The Smart Way Copyright © 2001,2006,2014 Eric S. Raymond, Rick Moen 本指南英文版版权为 Eric S. Raymond, Rick Mo…

The Book List

描述 The history of Peking University Library is as long as the history of Peking University. It was build in 1898. At the end of year 2015, it had about 11,000 thousand volumes of books, among which 8,000 thousand volumes were paper books and the others w…

nginx+keepalived详细配置信息

Nginx Keepalived 第一步&#xff1a; 下载keepalived地址&#xff1a;http://www.keepalived.org/download.html 解压安装&#xff1a; tar -zxvf keepalived-1.2.18.tar.gz -C /usr/local/ yum install -y openssl openssl-devel&#xff08;需要安装一个软件包&#xff09…

毕业3年,为何技术能力相差越来越大?

导读&#xff1a;毕业三年&#xff0c;每个人在技术能力跑道上&#xff0c;有了或大或小的差距。有些人永远在重复的劳动&#xff0c;有些人却能从中总结和解决问题。今天我们来探讨下&#xff0c;如何避免让战术上的勤奋掩盖战略上的懒惰&#xff0c;使得真正掌握好的知识点慢…

Periodic Signal

描述 Profess X is an expert in signal processing. He has a device which can send a particular 1 second signal repeatedly. The signal is A0 ... An-1 under n Hz sampling. One day, the device fell on the ground accidentally. Profess X wanted to check whether …

boost stacktrace堆栈打印

在windows下最方便的是minidump,其他2个平台麻烦不少,google-breakpad使用起来又太麻烦. 最近boost1.65版本出了个stacktrace使用起来简单方便,只是无法看实际数据,对于快速定位BUG还是很有帮助的. 要注意的是异常的处理需要写文件,应用重启之后再读取查看~ 用其他应用读取或…

redis优秀文章

https://www.cnblogs.com/PatrickLiu/tag/Redis/

Countries

描述 There are two antagonistic countries, country A and country B. They are in a war, and keep launching missiles towards each other. It is known that country A will launch N missiles. The i-th missile will be launched at time Tai. It flies uniformly and …

Windows下dump文件生成与分析

一、 生成Dump文件方式 1.1任务管理器 在程序崩溃后&#xff0c;先不关闭程序&#xff0c;在任务管理器中找到该程序对应的进程。右键—>创建转储文件。 此时会在默认的目录下创建出一个dump文件。 可以看出&#xff0c;此种方法只适用于程序崩溃但没有立即自行退出的情…

HTTP与HTTPS的区别[转载]

优秀文章链接&#xff1a;https://www.cnblogs.com/wqhwe/p/5407468.html