日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

【HDU4734】F(x) 数位DP

發布時間:2025/7/14 51 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【HDU4734】F(x) 数位DP 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目描述

  For a decimal number x with n digits (A[n]A[n-1]A[n-2] … A[2]A[1]), we define its weight as F(x) = A[n] * 2^(n-1) + A[n-1] * 2^(n-2) + … + A[2] * 2 + A[1] * 1. Now you are given two numbers A and B, please calculate how many numbers are there between 0 and B, inclusive, whose weight is no more than F(A).

題目大意

  對于一個數字x,n為x的位數,ai為從右往左第i位的數字。f(x)=ni=12i?1?a[i],給定數字A,B,求在0-B中這B+1個數中,f(x) < f(A) 的x個數。

數據范圍

(0 <= A,B < 10^9)

樣例輸入

3
0 100
1 10
5 100

樣例輸出

Case #1: 1
Case #2: 2
Case #3: 13

解題思路

數位DP
太水了就不寫具體了qwq

代碼

#include <bits/stdc++.h> using namespace std; inline int Getint(){int x=0,f=1;char ch=getchar();while('0'>ch||ch>'9'){if(ch=='-')f=-1;ch=getchar();}while('0'<=ch&&ch<='9'){x=x*10+ch-'0';ch=getchar();}return x*f;} int A,B,Max,lim[15]; int dp[3005][15]; void f(int x){int Len=0,ret=0;while(x)ret+=(x%10)*(1<<Len++),x/=10;Max=ret; } int Ask(int pos,int Sum,bool flag){if(!pos)return Sum<=Max;if(!flag&&~dp[Sum][pos])return dp[Sum][pos];int bound=flag?lim[pos]:9,ret=0;for(int i=0;i<=bound;i++)ret+=Ask(pos-1,Sum+(1<<pos-1)*i,flag&&i==bound);return !flag?dp[Sum][pos]=ret:ret; } int Ask(int x){int Len=0;while(x){lim[++Len]=x%10;x/=10;}return Ask(Len,0,1); } int main(){int Case=Getint();for(int i=1;i<=Case;i++){memset(dp,-1,sizeof(dp));f(Getint());cout<<"Case #"<<i<<": "<<Ask(Getint())<<"\n";}return 0; }

轉載于:https://www.cnblogs.com/Cedric341561/p/6810989.html

總結

以上是生活随笔為你收集整理的【HDU4734】F(x) 数位DP的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。