zoukankan      html  css  js  c++  java
  • LightOJ

    类型:

    数位DP

    题意:

    [0,N]范围内所有数的二进制表示,问出现"11"的次数。(“111”计为两次) (0 ≤ N < 231).

    思路:

    状态dp[i][d] 表示所有d开头的i位数(二进制)中出现11的次数

    dp[i][d] = dp[i-1][0~1(end)] + (d==1 && j==1)*(2i-2(nowx%2i-2+1))

    出口:dp[i][~] = 0

    没啥难点。状态转移卡了一下。一定要清晰的描述出转移诶。

    代码:

    #include <cstdio>
    #include <cstring>
    
    int num[50];
    long long dp[50][2];
    long long nowx;
    
    long long dfs(int i, int d, bool isQuery) {
        if (i == 1) {
            return 0;
        }
        long long &nowdp = dp[i][d];
        if (!isQuery && ~nowdp) return nowdp;
        int end = isQuery?num[i-1]:1;
        long long ans = 0;
        for (int j = 0; j <= end; j++) {
            ans += dfs(i-1, j, isQuery && j==end);
            if (d == 1 && j == 1) {
                ans += (isQuery && j==end)?(nowx%(1<<(i-2))+1):(1<<(i-2));
            }
        }
        if (!isQuery) nowdp = ans;
        return ans;
    }
    
    long long cal(long long x) {
        nowx = x;
        if (x == 0) return 0;
        int len = 0;
        while (x) {
            num[++len] = x%2;
            x>>=1;
        }
        return dfs(len+1, 0, true);
    }
    
    int main() {
        int t;
        scanf("%d", &t);
        int cas = 1;
        memset(dp, -1, sizeof(dp));
        while (t--) {
            long long n;
            scanf("%lld", &n);
            printf("Case %d: %lld
    ", cas++, cal(n));
        }
        return 0;
    }
  • 相关阅读:
    Java Map遍历方式的选择
    UriMatcher类的addURI()方法
    Java IO流分析整理[转]
    java基础一些注意细节
    java中static变量和方存在内存什么区域
    详细解析Java中抽象类和接口的区别
    mybatis一些记录
    Go语言简介(上)— 语法
    JavaScript相关-深入面向对象
    33个组件5
  • 原文地址:https://www.cnblogs.com/shinecheng/p/3600502.html
Copyright © 2011-2022 走看看