# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
688336 | stevancv | Palindrome-Free Numbers (BOI13_numbers) | C++14 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define sp ' '
#define en '\n'
#define smin(a, b) a = min(a, b)
#define smax(a, b) a = max(a, b)
using namespace std;
const int N = 800 + 2;
const int inf = 1e9;
ll dp[20][4];
/*
dp[i][0] - is the same string possible
dp[i][1] - only one position is used
dp[i][2] - >= 2 is used
*/
ll F(string a) {
if (a == "0") return 0;
dp[0][0] = 1;
dp[0][1] = a[0] - '1';
int x = a.size();
for (int i = 1; i < x; i++) {
dp[i][0] = dp[i - 1][0];
if (a[i] == a[i - 1]) dp[i][0] = 0;
if (i > 1 && a[i] == a[i - 2]) dp[i][0] = 0;
dp[i][1] = 9;
int k = a[i] - '0';
if (a[i - 1] < a[i]) k -= 1;
if (i > 1 && a[i - 2] < a[i]) k -= 1;
dp[i][2] = k * dp[i - 1][0] + 9 * dp[i - 1][1] + 8 * dp[i - 1][2];
}
return dp[x - 1][0] + dp[x - 1][1] + dp[x - 1][2];
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
string a, b;
cin >> a >> b;
ll ans = F(b) - F(a);
int ok = 1;
for (int i = 0; i < a.size(); i++) {
if (i > 1 && a[i] == a[i - 1]) ok = 0;
if (i > 2 && a[i] == a[i - 2]) ok = 0;
}
cout << ans + ok << en;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |