P10095 [ROIR 2023 Day 1] 斐波那契乘积

难度:普及/提高-

题目背景

翻译自 ROIR 2023 D1T2

斐波那契数指斐波那契数列(f0​=1,f1​=1,fi​=fi−2​+fi−1​)中出现的数。

题目描述

给定一个自然数 n,求出将其表示为大于 1 的斐波那契数的乘积的方式数量。

输入格式

第一行一个数 t,表示数据组数。

接下来 t 行,每行输入一个数 n。

输出格式

对于每组测试数据,输出一个数表示答案。

输入输出样例

输入 #1

复制代码
5
2
7
8
40
64

输出 #1

复制代码
1
0
2
2
3

说明/提示

样例解释:

  • 2=2。
  • 7 无法被表示为斐波那契乘积。
  • 8=8=2×2×2。
  • 40=5×8=2×2×2×5。
  • 64=8×8=2×2×2×8=2×2×2×2×2×2。

本题使用捆绑测试。

子任务编号 分值 2≤�≤2≤n≤
1 15 100
2 17 10^5
3 9 n 是 2 的整数次幂
4 38 10^9
5 21 10^18

对于所有数据,1≤t≤50,2≤n≤101^8。

思路

使用dfs搜索表示为大于 1 的斐波那契数的乘积的方式数量。

完整代码

cpp 复制代码
#include <bits/stdc++.h>
using namespace std;
const int N = 1e18, M = 1e6 + 6;
typedef long long ll;
long long t,len,f[M];
int dfs(long long n, long long id) {
    if (n == 1) return 1;
    if (id == 1) return 0;
    while (n < f[id]) id--;
    ll ans = 0;
    if (n % f[id] == 0) ans += dfs(n / f[id], id);
    return ans + dfs(n, id - 1);
}
int main() {
    cin>>t;
    //freopen("a.in","r",stdin);
    f[0]=1, f[1]=1;
    len=1;
    while (true) {
        f[len+1]=f[len]+f[len-1];
        len++;
        if(f[len]>N) break;
    }
    len--;
    while (t--) {
        long long n;
        cin>>n;
        //freopen("b.in","r",stdin);
        cout<<dfs(n, len)<<endl;
        //freopen("c.out","w",stdout);
    }
    return 0;
}
相关推荐
a***56069 小时前
Windows上安装Go并配置环境变量(图文步骤)
开发语言·windows·golang
San30.9 小时前
ES6+ 新特性解析:让 JavaScript 开发更优雅高效
开发语言·javascript·es6
烤麻辣烫9 小时前
黑马程序员苍穹外卖(新手)DAY6
java·开发语言·学习·spring·intellij-idea
Dream it possible!9 小时前
LeetCode 面试经典 150_二叉搜索树_二叉搜索树中第 K 小的元素(86_230_C++_中等)
c++·leetcode·面试
友友马10 小时前
『QT』窗口 (一)
开发语言·数据库·qt
APIshop10 小时前
Python 零基础写爬虫:一步步抓取商品详情(超细详解)
开发语言·爬虫·python
sin_hielo10 小时前
leetcode 2872
数据结构·算法·leetcode
dragoooon3410 小时前
[优选算法专题八.分治-归并 ——NO.49 翻转对]
算法
AI科技星10 小时前
为什么宇宙无限大?
开发语言·数据结构·经验分享·线性代数·算法
Appreciate(欣赏)11 小时前
JAVA使用poi类读取xlxs文件内容拼接成添加数据SQL
java·开发语言·sql