이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAXD = 18;
const int DIGCNT = 10;
ll A, B;
ll dp[MAXD + 1][DIGCNT + 1][DIGCNT + 1][2][2];
vector<int> number;
ll calc_dp(int pos = MAXD, int p1 = DIGCNT, int p2 = DIGCNT, bool smaller = false, bool leadz = true)
{
if (pos == -1)
return 1;
if (dp[pos][p1][p2][smaller][leadz] != -1)
return dp[pos][p1][p2][smaller][leadz];
int v = number[pos];
dp[pos][p1][p2][smaller][leadz] = 0;
for (int l = 0; l < DIGCNT; l++) {
if (l == 0 && leadz) {
dp[pos][p1][p2][smaller][leadz] += calc_dp(pos - 1, p2, DIGCNT, smaller || v, true);
}
else {
if (l == p1 || l == p2)
continue;
if (l < v) {
dp[pos][p1][p2][smaller][leadz] += calc_dp(pos - 1, p2, l, true, false);
}
else if (l == v) {
dp[pos][p1][p2][smaller][leadz] += calc_dp(pos - 1, p2, l, smaller, false);
}
else {
if (smaller)
dp[pos][p1][p2][smaller][leadz] += calc_dp(pos - 1, p2, l, smaller, false);
}
}
}
return dp[pos][p1][p2][smaller][leadz];
}
void setnum(ll A)
{
memset(dp, -1, sizeof(dp));
number.clear();
for (int i = 0; i < MAXD + 1; i++) {
number.push_back(A % 10);
A /= 10;
}
}
int main(void)
{
scanf("%lld %lld", &A, &B);
ll ans = 0;
if (A != 0) {
setnum(A - 1);
ans -= calc_dp();
}
setnum(B);
ans += calc_dp();
printf("%lld\n", ans);
}
컴파일 시 표준 에러 (stderr) 메시지
numbers.cpp: In function 'int main()':
numbers.cpp:61:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
61 | scanf("%lld %lld", &A, &B);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |