| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 274774 | stefantaga | Palindrome-Free Numbers (BOI13_numbers) | C++14 | 5 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
