• [ZJOI 2012]数列


    Description

    题库链接

    给你一个数列 (A),满足递推公式
    [ A_n=left{egin{aligned}&0,&n=0\&1,&n=1\&A_frac{n}{2},&2mid n\&A_{leftlfloorfrac{n}{2} ight floor}+A_{leftlceilfrac{n}{2} ight ceil},& ext{otherwise}end{aligned} ight. ]

    (t) 组询问,每次询问 (A_n) 为多少。

    (1leq tleq 20, 1leq nleq 10^{100})

    Solution

    容易发现计算 (A_n) 时,如果我们不断根据递推公式去运算,最后只会有 (O(log n)) 种不同状态,因此我们可以直接暴力递归,然后用 map 存下已出现过的状态记忆化搜索就好了。

    这题高精度不打错问题就不大。

    Code

    #include <bits/stdc++.h>
    using namespace std;
    const int N = 100+5;
    
    struct BIGN {
        int a[N], l;
        BIGN () {memset(a, l = 0, sizeof(a)); }
        BIGN (int x) {memset(a, 0, sizeof(a)); l = 1, a[1] = x; }
        bool operator == (const BIGN &b) const {
            if (l != b.l) return false;
            for (int i = l; i >= 1; i--)
                if (a[i] != b.a[i]) return false;
            return true;
        }
        bool operator < (const BIGN &b) const {
            if (l != b.l) return l < b.l;
            for (int i = l; i >= 1; i--)
                if (a[i] != b.a[i]) return a[i] < b.a[i];
            return false;
        }
        BIGN operator + (BIGN b) {
            BIGN ans; ans.l = max(l, b.l);
            if (l <= b.l) for (int i = l+1; i <= b.l; i++) a[i] = 0;
            if (b.l <= l) for (int i = b.l+1; i <= l; i++) b.a[i] = 0;
            for (int i = 1; i <= ans.l; i++)
                ans.a[i] = (a[i]+b.a[i]);
            ans.a[ans.l+1] = 0;
            for (int i = 1; i <= ans.l; i++)
                ans.a[i+1] += ans.a[i]/10, ans.a[i] %= 10;
            if (ans.a[ans.l+1]) ++ans.l;
            return ans;
        }
        void get() {
            char ch = getchar();
            while (ch < '0' || ch > '9') ch = getchar();
            while (ch >= '0' && ch <= '9') a[++l] = ch-'0', ch = getchar();
            reverse(a+1, a+l+1);
        }
        void put() {
            for (int i = l; i >= 1; i--) putchar(a[i]+'0');
            puts("");
        }
        BIGN div() {
            BIGN ans; ans.l = l; int m = 0;
            for (int i = l; i >= 1; i--)
                ans.a[i] = (m*10+a[i])/2, m = (m*10+a[i])%2;
            if (!ans.a[l]) --ans.l;
            return ans;
        }
    } n, m;
    int t;
    map<BIGN, BIGN> mp;
    
    BIGN dfs(BIGN n) {
        if (mp.count(n)) return mp[n];
        if (n == BIGN()) return BIGN();
        if (n == BIGN(1)) return BIGN(1);
        BIGN t = n.div();
        if (n.a[1]&1) return mp[n] = dfs(t)+dfs(t+BIGN(1));
        else return mp[n] = dfs(t);
        return mp[n];
    }
    int main() {
        scanf("%d
    ", &t);
        while (t--) {
            n = BIGN(); n.get();
            dfs(n).put();
        }
        return 0;
    }
  • 相关阅读:
    Tomcat报错:The valid characters are defined in RFC 7230 and RFC 3986
    MySQL 大数据量表最优分页方法
    Tomcat、Nginx/Openresty 隐藏版本号,使用nginx来统一显示错误页面
    理解领域驱动设计
    Windows+.NetCore+git+IIS在Jenkins上的自动化部署入门
    Oracle 函数wmsys.wm_concat中文乱码解决
    Springboot 在Filter 中通过@Autowired注入Bean,打包war部署为空值解决
    Java线程处理Future
    springboot打包war部署到weblogic,涉及Filter以及Filter中的@Value处理
    解决mybatisplus分页查询不起作用
  • 原文地址:https://www.cnblogs.com/NaVi-Awson/p/12425631.html
Copyright © 2020-2023  润新知