Submission #467430

#TimeUsernameProblemLanguageResultExecution timeMemory
467430Leonardo_PaesPalindrome-Free Numbers (BOI13_numbers)C++17
72.50 / 100
1 ms332 KiB
#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){
	d.clear();
	while(x){
		d.push_back(x%10);
		x /= 10;
	}
	reverse(d.begin(), d.end());
	memset(dp, -1, sizeof dp);
	return solve(0, 0, 10, 10);
}

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;
}

Compilation message (stderr)

numbers.cpp: In function 'll solve(int, bool, int, int)':
numbers.cpp:9:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    9 |  if(pos == d.size()) return 1;
      |     ~~~~^~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...