//Bismillahirrahmanirrahim
//█▀█─█──█──█▀█─█─█
//█▄█─█──█──█▄█─█▄█
//█─█─█▄─█▄─█─█─█─█
#include <bits/stdc++.h>
using namespace std;
typedef long long lo;
typedef pair< lo,lo > PII;
#define fi first
#define se second
#define mp make_pair
#define endl "\n"
#define pb push_back
#define int long long
#define fio() ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define FOR for(int i=1;i<=n;i++)
#define mid ((start+end)/2)
#define ort ((bas+son)/2)
const lo inf = 2000000000000000000;
const lo KOK = 100000;
const lo LOG = 30;
const lo li = 500005;
const lo mod = 1000000007;
int n,m,b[li],a[li],k,flag,t,dp[30][6][15][15],aman;
int cev;
string s;
vector<int> v,vv;
inline int add(int x,int y){
if(x+y>=inf){aman=1;return x+y-inf;}
return x+y;
}
inline int f(int sira,int al,int last2,int last1){
int cevv=0;
if(sira==(int)v.size())return 1;
if(~dp[sira][al][last2][last1])return dp[sira][al][last2][last1];
for(int i=0;i<=9;i++){
if(al==0 && i>v[sira])break;
if(i==last2 || i==last1)continue;
if(last1==10 && last2==10 && i==0){
int yes=0;
if(i<vv[sira])yes=1;
cevv=add(cevv,f(sira+1,max(yes,al),10,10));
}
else{
int yes=0;
if(i<vv[sira])yes=1;
cevv=add(cevv,f(sira+1,max(yes,al),last1,i));
}
}
return dp[sira][al][last2][last1]=cevv;
}
inline int f1(int sira,int al,int last2,int last1){
int cevv=0;
//~ cout<<sira<<" : : "<<al<<" : : "<<last2<<" : : "<<last1<<endl;
if(sira==(int)vv.size())return 1;
if(~dp[sira][al][last2][last1])return dp[sira][al][last2][last1];
for(int i=0;i<=9;i++){
if(al==0 && i>vv[sira])continue;
if(i==last2 || i==last1)continue;
//~ if(sira==0 && i==0)continue;
if(last1==10 && last2==10 && i==0){
int yes=0;
if(i<vv[sira])yes=1;
cevv=add(cevv,f1(sira+1,max(yes,al),10,10));
}
else{
int yes=0;
if(i<vv[sira])yes=1;
cevv=add(cevv,f1(sira+1,max(yes,al),last1,i));
}
}
return dp[sira][al][last2][last1]=cevv;
}
main(void){
scanf("%lld %lld",&n,&m);
n--;
if(n==-1)flag=1;
while(n){
v.pb(n%10);
n/=10;
}
while(m){
vv.pb(m%10);
m/=10;
}
//~ v=vv;
reverse(v.begin(),v.end());
reverse(vv.begin(),vv.end());
//~ for(int i=0;i<(int)vv.size();i++)printf("%lld",vv[i]);
//~ printf("\n");
//~ for(int i=0;i<(int)v.size();i++)printf("%lld",v[i]);
//~ printf("\n");
memset(dp,-1,sizeof(dp));
//~ if(n==-1)
cev=f1(0,0,10,10);
memset(dp,-1,sizeof(dp));
if(flag)cev=0;
//~ cout<<cev<<endl;
printf("%lld\n",cev-f(0,0,10,10));
//~ cout<<aman<<endl;
return 0;
}
Compilation message
numbers.cpp:85:10: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
85 | main(void){
| ^
numbers.cpp: In function 'int main()':
numbers.cpp:86:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
86 | scanf("%lld %lld",&n,&m);
| ~~~~~^~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
640 KB |
Output is correct |
2 |
Correct |
1 ms |
640 KB |
Output is correct |
3 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
4 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
5 |
Correct |
1 ms |
640 KB |
Output is correct |
6 |
Correct |
1 ms |
640 KB |
Output is correct |
7 |
Correct |
1 ms |
640 KB |
Output is correct |
8 |
Correct |
1 ms |
640 KB |
Output is correct |
9 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
10 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
11 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
12 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
13 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
14 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
15 |
Correct |
1 ms |
640 KB |
Output is correct |
16 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
17 |
Incorrect |
1 ms |
616 KB |
Output isn't correct |
18 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
19 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
20 |
Correct |
1 ms |
640 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
2 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
3 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
4 |
Incorrect |
2 ms |
640 KB |
Output isn't correct |
5 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
6 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
7 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
8 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
9 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
10 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
11 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
12 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
13 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
14 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
15 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
16 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
17 |
Correct |
1 ms |
640 KB |
Output is correct |
18 |
Correct |
1 ms |
640 KB |
Output is correct |
19 |
Correct |
1 ms |
640 KB |
Output is correct |
20 |
Correct |
1 ms |
640 KB |
Output is correct |
21 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
22 |
Correct |
1 ms |
640 KB |
Output is correct |
23 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
24 |
Correct |
0 ms |
640 KB |
Output is correct |
25 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
26 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
27 |
Correct |
1 ms |
640 KB |
Output is correct |
28 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
29 |
Correct |
1 ms |
640 KB |
Output is correct |
30 |
Correct |
1 ms |
640 KB |
Output is correct |
31 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
32 |
Correct |
1 ms |
640 KB |
Output is correct |
33 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
34 |
Correct |
1 ms |
640 KB |
Output is correct |
35 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
36 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
37 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
38 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
39 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
40 |
Correct |
1 ms |
640 KB |
Output is correct |
41 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
42 |
Correct |
1 ms |
640 KB |
Output is correct |
43 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
44 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |
45 |
Incorrect |
1 ms |
640 KB |
Output isn't correct |