Submission #410793

#TimeUsernameProblemLanguageResultExecution timeMemory
410793VictorPalindrome-Free Numbers (BOI13_numbers)C++17
78.75 / 100
1 ms344 KiB
#include <bits/stdc++.h> using namespace std; #define rep(i, a, b) for (int i = a; i < (b); ++i) #define per(i, a, b) for (int i = b - 1; i >= (a); --i) #define trav(a, x) for (auto &a : x) #define all(x) x.begin(), x.end() #define sz(x) x.size() #define pb push_back #define umap unordered_map #define uset unordered_set typedef pair<int, int> ii; typedef pair<int, ii> iii; typedef vector<int> vi; typedef vector<ii> vii; typedef vector<vi> vvi; typedef long long ll; const int INF = 1'000'000'007; int n; string lo, hi; ll memo[20][11][11][2][2]; ll dp(int num, int prev, int befprev, bool l_bound, bool u_bound) { if (num == n) return 1; ll &ans = memo[num][prev][befprev][l_bound][u_bound]; if(ans!=-1)return ans; ans=0; if (sz(lo) <= num) l_bound = 0; int start = l_bound ? lo[num] - '0' : 0, stop = u_bound ? hi[num] - '0' + 1 : 10; if(!num)start=max(start,1); rep(i, start, stop) { if (i == prev || i == befprev) continue; ans += dp(num + 1, i, prev, l_bound & (i == lo[num] - '0'), u_bound & (i == hi[num] - '0')); } return ans; } int main() { cin.tie(0)->sync_with_stdio(0); cin.exceptions(cin.failbit); ll l,h,ans=0; memset(memo, -1, sizeof(memo)); cin >> l >> h; lo=to_string(l); hi=to_string(h); rep(i,sz(lo),sz(hi)+1){ n=i; ans+=dp(0,10,10,i==sz(lo),i==sz(hi)); } cout<<ans<<endl; return 0; }

Compilation message (stderr)

numbers.cpp: In function 'll dp(int, int, int, bool, bool)':
numbers.cpp:36:16: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   36 |     if (sz(lo) <= num) l_bound = 0;
      |                ^
numbers.cpp: In function 'int main()':
numbers.cpp:5:40: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    5 | #define rep(i, a, b) for (int i = a; i < (b); ++i)
      |                                        ^
numbers.cpp:60:5: note: in expansion of macro 'rep'
   60 |     rep(i,sz(lo),sz(hi)+1){
      |     ^~~
numbers.cpp:62:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   62 |         ans+=dp(0,10,10,i==sz(lo),i==sz(hi));
      |                          ^
numbers.cpp:62:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   62 |         ans+=dp(0,10,10,i==sz(lo),i==sz(hi));
      |                                    ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...