This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
long long dp[10][10][20][2];
string str;
//all : all digits are allowed
long long Calc(int first,int second,int len,bool all)
{
if(len>=str.length())
{
return 1;
}
else
{
if(dp[first][second][len][all]==-1)
{
long long help=0;
if(all)
{
for(int n=0; n<=9; n++)
{
if(n!=first&&n!=second)
{
help+=Calc(second,n,len+1,true);
}
}
}
else
{
int limit=str[len]-'0';
for(int n=0; n<limit; n++)
{
if(n!=first&&n!=second)
{
help+=Calc(second,n,len+1,true);
}
}
if(limit!=first&&limit!=second)
{
help+=Calc(second,limit,len+1,false);
}
}
dp[first][second][len][all]=help;
}
return dp[first][second][len][all];
}
}
long long Get(long long num)
{
if(num<0)return 0;
stringstream ss;
ss<<num;
str=ss.str();
memset(dp,-1,sizeof(dp));
int first=str[0]-'0';
long long res=1;
for(int n=1; n<=first; n++)
{
res+=Calc(n,n,1,n!=first);
}
for(int k=2; k<=str.length(); k++)
{
for(int n=1; n<10; n++)
{
res+=Calc(n,n,k,true);
}
}
return res;
}
int main()
{
#ifdef HOME
ifstream cin("date.in");
ofstream cout("date.out");
#endif // HOME
long long a,b;
cin>>a>>b;
long long counter=Get(b)-Get(a-1);
cout<<counter;
return 0;
}
Compilation message (stderr)
numbers.cpp: In function 'long long int Calc(int, int, int, bool)':
numbers.cpp:9:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
9 | if(len>=str.length())
| ~~~^~~~~~~~~~~~~~
numbers.cpp: In function 'long long int Get(long long int)':
numbers.cpp:61:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | for(int k=2; k<=str.length(); k++)
| ~^~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |