Advertisement
yeskendir_sultanov

2021 - РЮО - D

Apr 2nd, 2025
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. const int N = 1e5 + 3;
  5. const int LOG = 18;
  6. int n, x, a[N], mxp[N], p[LOG], dp[LOG][N];
  7.  
  8. void preCalc() {
  9. p[0] = 1;
  10. for (int i = 1; i < LOG; ++i) {
  11. p[i] = p[i - 1] * 2;
  12. }
  13. for (int i = 1, curP = 0, curValue = 1; i < N; ++i) {
  14. while (curValue * 2 <= i) {
  15. curValue *= 2;
  16. curP++;
  17. }
  18. mxp[i] = curP;
  19. }
  20. }
  21.  
  22. void build() {
  23. for (int i = 1; i <= n; ++i) {
  24. dp[0][i] = a[i];
  25. }
  26. int Log = mxp[n];
  27. for (int k = 1; k <= Log; ++k) {
  28. for (int i = 1; i <= n; ++i) {
  29. dp[k][i] = min(dp[k - 1][i], dp[k - 1][i + p[k - 1]]);
  30. }
  31. }
  32. }
  33.  
  34. int getMin(int L, int R) {
  35. int k = mxp[R - L + 1];
  36. return min(dp[k][L], dp[k][R - p[k] + 1]);
  37. }
  38.  
  39. void solve() {
  40. cin >> n >> x;
  41. for (int i = 1; i <= n; ++i) {
  42. cin >> a[i];
  43. }
  44. build();
  45.  
  46. unordered_map<int, vector<int>> ind;
  47.  
  48. long long ans = 0;
  49.  
  50. for (int i = 1; i <= n; ++i) {
  51. int R = i;
  52. int need = (x ^ a[R]); // a[L] = x ^ a[R];
  53.  
  54. if (ind.count(need) > 0) {
  55. for (int L : ind[need]) {
  56. ans = max(ans, getMin(L, R) * 1ll * (R - L + 1));
  57. }
  58. }
  59.  
  60. ind[a[i]].push_back(i);
  61. }
  62.  
  63. cout << ans << endl;
  64. }
  65.  
  66. int main() {
  67. ios_base::sync_with_stdio(NULL);
  68. cin.tie(0); cout.tie(0);
  69.  
  70. preCalc();
  71.  
  72. int t = 1;
  73. for (int testId = 1; testId <= t; ++testId) {
  74. solve();
  75. }
  76. return 0;
  77. }
  78.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement