# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
467432 | Leonardo_Paes | Palindrome-Free Numbers (BOI13_numbers) | C++17 | 1 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<int> d;
ll dp[20][2][11][11];
ll solve(int pos, bool flag, int l1, int l2){
if(pos == d.size()) return 1;
if(dp[pos][flag][l1][l2] != -1) return dp[pos][flag][l1][l2];
ll tot = 0;
if(flag){
for(int i=0; i<10; i++){
if(i == l1 or i == l2) continue;
tot += solve(pos+1, flag, l2, i);
}
}
else{
for(int i=0; i<=d[pos]; i++){
if(i == l1 or i == l2) continue;
tot += solve(pos+1, i == d[pos] ? 0 : 1, l2, i);
}
}
return dp[pos][flag][l1][l2] = tot;
}
ll calc(ll x){
if(x <= 0) return 0;
d.clear();
while(x){
d.push_back(x%10);
x /= 10;
}
reverse(d.begin(), d.end());
memset(dp, -1, sizeof dp);
ll ans = 0;
for(int i=0; i+1<d.size(); i++) ans += solve(i, i ? 1 : 0, 0, 10);
return ans;
}
int main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
ll a, b;
cin >> a >> b;
cout << calc(b) - calc(a-1) << "\n";
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |