이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll dp [10][10][20][2];
string str;
// all: all digits are allowed
ll Calc(int first, int second, int len, bool all)
{
if (len >= str.length())
{
return 1;
}
else
{
if (dp[first][second][len][all]==-1)
{
ll 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] ;
}
}
ll Get (ll num)
{
if (num < 0) return 0;
stringstream ss ;
ss << num;
str = ss.str();
memset(dp, -1, sizeof(dp));
int first = str[0] - '0';
ll 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 ()
{
ll a, b;
cin >> a >> b;
cout << Get(b) - Get(a - 1);
}
컴파일 시 표준 에러 (stderr) 메시지
numbers.cpp: In function 'll Calc(int, int, int, bool)':
numbers.cpp:11:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
11 | if (len >= str.length())
| ~~~~^~~~~~~~~~~~~~~
numbers.cpp: In function 'll Get(ll)':
numbers.cpp:64:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
64 | for (int k = 2; k <= str.length() ; k++)
| ~~^~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |