Submission #467436

#TimeUsernameProblemLanguageResultExecution timeMemory
467436Leonardo_PaesPalindrome-Free Numbers (BOI13_numbers)C++17
87.50 / 100
2 ms348 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] , 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()); ll ans = 0; for(int i=0; i+1<d.size(); i++){ memset(dp, -1, sizeof dp); ans += solve(i, i != 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; }

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;
      |     ~~~~^~~~~~~~~~~
numbers.cpp: In function 'll calc(ll)':
numbers.cpp:36:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   36 |  for(int i=0; i+1<d.size(); i++){
      |               ~~~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...