Advertisement
tiom4eg

openol B 76/100

Jan 16th, 2023
501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.30 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. // tiom4eg's precompiler options
  3. // POGGERS POGGERS POGGERS POGGERS POGGERS POGGERS POGGERS
  4. // IO settings
  5. #define fastIO ios_base::sync_with_stdio(false); cin.tie(0)
  6. // Quick types
  7. #define ll long long
  8. #define ld long double
  9. #define ull unsigned long long
  10. #define pii pair <int, int>
  11. #define vi vector <int>
  12. #define mi vector <vector <int>>
  13. // Quick functions
  14. //#define endl "\n"
  15. #define F first
  16. #define S second
  17. #define all(a) a.begin(), a.end()
  18. #define sz(a) (int)(a.size())
  19. #define pb push_back
  20. #define mp make_pair
  21. // Quick fors
  22. #define FOR(i, a, b) for (int i = a; i < b; ++i)
  23. #define FORS(i, a, b, c) for (int i = a; i < b; i += c)
  24. #define RFOR(i, a, b) for (int i = a; i >= b; --i)
  25. #define EACH(e, a) for (auto& e : a)
  26. // Pragmas
  27. #ifndef TIOM4EG
  28. #pragma GCC optimize("O3,unroll-loops") // let the chaos begin!
  29. #pragma GCC target("avx,avx2,bmi,bmi2,popcnt,lzcnt,tune=native")
  30. #pragma GCC comment(linker, "/stack:200000000")
  31. #endif
  32. // PBDS
  33. #include <ext/pb_ds/assoc_container.hpp>
  34. #include <ext/pb_ds/tree_policy.hpp>
  35. #define ordered_set tree <int, null_type, less <int>, rb_tree_tag, tree_order_statistics_node_update>
  36. #define ook order_of_key
  37. #define fbo find_by_order
  38. using namespace __gnu_pbds;
  39. // POGGERS POGGERS POGGERS POGGERS POGGERS POGGERS POGGERS
  40. using namespace std;
  41. mt19937 rng(chrono::duration_cast<chrono::milliseconds>(chrono::system_clock::now().time_since_epoch()).count());
  42. //#define int long long
  43. const int INF = 1e9 + 7, MD = 998244353, MOD = 1e9 + 7, LG = 30, B = 31, S = 512;
  44.  
  45. int dpe[2600][10], dpo[2600][10], len[2600]; // 2k-1, 2k
  46.  
  47. inline int add(int a, int b) { return a + b - MOD * (a + b >= MOD); }
  48.  
  49. signed main() {
  50.     FOR(i, 0, 10) dpo[1][i] = 1;
  51.     FOR(i, 0, 5) dpe[1][i] = 1;
  52.     FOR(i, 2, 2600) FOR(j, 0, 10) FOR(k, 0, 10 - j) dpo[i][j] = add(dpo[i][j], dpo[i - 1][k]), dpe[i][j] = add(dpe[i][j], dpe[i - 1][k]);
  53.     len[1] = 9, len[2] = 13;
  54.     FOR(i, 3, 2600) {
  55.         len[i] = len[i - 1];
  56.         if (i & 1) FOR(j, 1, 10) len[i] = add(len[i], dpo[i / 2 + 1][j]);
  57.         else FOR(j, 1, 10) len[i] = add(len[i], dpe[i / 2][j]);
  58.     }
  59.     fastIO;
  60.     int q; cin >> q;
  61.     while (q--) {
  62.         string s; cin >> s;
  63.         int n = sz(s), res = len[n - 1], pr = 0, f = 0;
  64.         if (n & 1) FOR(i, 0, n / 2 + 1) {
  65.             FOR(j, !i, min(10 - pr, (i == n / 2 & !f) + s[i] - '0')) res = add(res, dpo[(n + 1) / 2 - i][j]);
  66.             if (s[i] - '0' >= 10 - pr) break;
  67.             if (s[i] > s[n - 1 - i]) f = 1;
  68.             if (s[i] < s[n - 1 - i]) f = 0;
  69.             pr = s[i] - '0';
  70.         }
  71.         else FOR(i, 0, n / 2) {
  72.             if (i + 1 == n / 2) {
  73.                 if (s[i] < s[n - 1 - i]) FOR(j, !i, min(10 - pr, 1 + s[i] - '0')) res = add(res, dpe[n / 2 - i][j]);
  74.                 else if (s[i] == s[n - 1 - i]) FOR(j, !i, min(10 - pr, !f + s[i] - '0')) res = add(res, dpe[n / 2 - i][j]);
  75.                 else FOR(j, !i, min(10 - pr, s[i] - '0')) res = add(res, dpe[n / 2 - i][j]);
  76.                 break;
  77.             }
  78.             FOR(j, !i, min(10 - pr, s[i] - '0')) res = add(res, dpe[n / 2 - i][j]);
  79.             if (s[i] - '0' >= 10 - pr) break;
  80.             if (s[i] > s[n - 1 - i]) f = 1;
  81.             if (s[i] < s[n - 1 - i]) f = 0;
  82.             pr = s[i] - '0';
  83.         }
  84.         cout << res << endl;
  85.     }
  86. }
  87.  
  88.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement