Codeforces 633D Fibonacci-ish(搜索)

本文介绍了一个基于斐波那契数列的问题,旨在从给定数列中找出最长的符合斐波那契规则的子序列。通过使用哈希映射辅助的深度优先搜索算法实现解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题意:

让你在数列中选择一些数字组成数列,使其满足斐波那契数列的规则,求能够组成符合条件的序列的最长长度。
直接搜索就行了,因为斐波那契数列的增长速度是非常快的,最长也就log(1e9),所以n*2枚举,然后用map哈希一下,直接爆搜,注意一点,如果我们枚举的前两个数是0 0,那么长度就是0的个数,注意特判

代码:

//
//  Created by  CQU_CST_WuErli
//  Copyright (c) 2016 CQU_CST_WuErli. All rights reserved.
//
#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <map>
#include <queue>
#include <stack>
#include <set>
#include <algorithm>
#include <sstream>
#define CLR(x) memset(x,0,sizeof(x))
#define OFF(x) memset(x,-1,sizeof(x))
#define MEM(x,a) memset((x),(a),sizeof(x))
#define BUG cout << "I am here" << endl
#define lookln(x) cout << #x << "=" << x << endl
#define SI(a) scanf("%d",&a)
#define SII(a,b) scanf("%d%d",&a,&b)
#define SIII(a,b,c) scanf("%d%d%d",&a,&b,&c)
#define rep(flag,start,end) for(int flag=start;flag<=end;flag++)
#define Rep(flag,start,end) for(int flag=start;flag>=end;flag--)
#define Lson l,mid,rt<<1
#define Rson mid+1,r,rt<<1|1
#define Root 1,n,1
#define BigInteger bign
const int MAX_L=2005;// For BigInteger
const int INF_INT=0x3f3f3f3f;
const long long INF_LL=0x7fffffff;
const int MOD=1e9+7;
const double eps=1e-9;
const double pi=acos(-1);
typedef long long  ll;
using namespace std;

int n;
int a[1010];
int ans;
int vis[1010];
map<int,int> mp;

void dfs(int x,int y,int cnt) {
    ans=max(cnt,ans);
    if (mp[x+y]) {
        mp[x+y]--;
        dfs(y,x+y,cnt+1);
        mp[x+y]++;
    }
}

int main(int argc, char const *argv[]) {
#ifdef LOCAL
    freopen("C:\\Users\\john\\Desktop\\in.txt","r",stdin);
    // freopen("C:\\Users\\john\\Desktop\\out.txt","w",stdout);
#endif
    while(SI(n)==1) {
        rep(i,1,n) SI(a[i]);
        rep(i,1,n) mp[a[i]]++;
        int kk=0;
        rep(i,1,n) if (a[i]==0) kk++;
        ans=0;
        CLR(vis);
        rep(i,1,n) rep(j,1,n) if (i!=j) {
            if (a[i]==0 && a[j]==0) {
                ans=max(ans,kk);
                continue;
            }
            mp[a[i]]--;mp[a[j]]--;
            dfs(a[i],a[j],2);
            mp[a[i]]++,mp[a[j]]++;
        }
        cout << ans << endl;
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值