Codeforces 628D Magic Numbers [디지털 dp]
1948 단어 디지털 DPcodeforces
정의 d-수: 숫자 d가 있고 짝수 자리에서만 홀수 자리에 숫자 d가 나타날 수 없습니다.(0<=d<=9)
제목: 구간 [L, R]을 정하고 구간에서 m로 정제될 수 있는 d-수를 물어본다.
사고방식: 디지털 dp, dp[i][j]는 i위%m==j로 처리된 방안수를 나타낸다.기억화 케이스만 끼면 돼.
10^2000은 너무 커서 단점은 특판이 필요합니다.
AC 코드:
#include
#include
#include
#include
#include
#include
#include
#define CLR(a, b) memset(a, (b), sizeof(a))
#define PI acos(-1.0)
using namespace std;
typedef long long LL;
typedef double DD;
const int MAXN = 1e5+10;
const int MOD = 1e9+7;
int m, d, L;
int bit[2001];
LL dp[2001][2001];
void add(LL &x, LL y) {x = (x + y) % MOD;}
LL DFS(int pos, int preyu, bool yes)
{
if(pos == L) return preyu == 0;
if(!yes && dp[pos][preyu] != -1) return dp[pos][preyu];
LL ans = 0;
int End = yes ? bit[pos] : 9;
for(int i = 0; i <= End; i++)
{
if(pos % 2 == 0 && i == d) continue;
if(pos % 2 == 1 && i != d) continue;
add(ans, DFS(pos+1, (preyu*10+i)%m, yes&&i==End));
}
if(!yes) dp[pos][preyu] = ans;
return ans;
}
LL Count(string str)
{
int len = str.size(); int cnt = 0;
for(int i = 0; i < len; i++) bit[i] = str[i] - '0';
return DFS(0, 0, 1);
}
bool judge(string str)
{
int len = str.size(); int yu = 0;
for(int i = 0; i < len; i++)
{
int v = str[i] - '0';
yu = yu * 10 + v; yu %= m;
if((i + 1) & 1 && v == d) return false;
if(i & 1 && v != d) return false;
}
return yu == 0;
}
int main()
{
CLR(dp, -1);
cin >> m >> d;
string a, b; cin >> a >> b; L = a.size();
//cout << judge(a) << ' ';
cout << (Count(b) - Count(a) + judge(a) + MOD) % MOD << endl;
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HDU3652 B-number제목: 숫자를 주고 이 수보다 작고 13이라는 자열을 포함하여 13으로 나누어진 수의 개수를 충족시키는 몇 개가 있느냐고 묻는다. 디지털 DP, 기억화 검색 실현, dp[i][j][k], i는 위치, j는mod13의...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.