Submission #905029

# Submission time Handle Problem Language Result Execution time Memory
905029 2024-01-12T13:07:19 Z LucaLucaM Intergalactic ship (IZhO19_xorsum) C++17
8 / 100
2000 ms 2652 KB
#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
#include <cstring>
#warning That's the baby, that's not my baby
#define int long long

typedef long long ll;

const int mod = 1e9 + 7;
const int NMAX = 30;
const int VMAX = 32;

struct Update {
  int l, r, x;
};

int cnt[VMAX][VMAX];
ll newCnt[VMAX][VMAX];
ll ways[NMAX][NMAX];

/// cnt[x][y] =def= pt cate subset uri am a[i] = x, a[j] = y?

#define debug(x) #x << " = " << x
bool matters[NMAX];

signed main() {
  std::ios_base::sync_with_stdio(false);
  std::cin.tie(0);

  int n;
  std::cin >> n;
  std::vector<int> a(n);
  for (int i = 0; i < n; i++) {
    std::cin >> a[i];
  }

  for (int i = 0; i < n; i++) {
    for (int j = i; j < n; j++) {
      ways[i][j] = (i + 1) * (n - j);
    }
  }

  int q;
  std::cin >> q;

  std::vector<Update> Q(q);

  for (auto &[l, r, v] : Q) {
    std::cin >> l >> r >> v;
    --l, --r;
    matters[l] = true;
    matters[r] = true;
  }

  ll answer = 0;

  for (int i = 0; i < n; i++) {
    for (int j = i; j < n; j++) {
      if (i != j && !matters[j] && !matters[j - 1]) {
        for (int x = 0; x < VMAX; x++) {
          for (int y = 0; y < VMAX; y++) {
            newCnt[x][y ^ a[j - 1] ^ a[j]] += cnt[x][y];
          }
        }
        for (int x = 0; x < VMAX; x++) {
          for (int y = 0; y < VMAX; y++) {
            cnt[x][y] = newCnt[x][y];
            newCnt[x][y] = 0;
          }
        }
      } else {
        memset(cnt, 0, sizeof(cnt));
        cnt[a[i]][a[j]] = 1;
        for (auto &[l, r, v] : Q) {
          for (int x = 0; x < VMAX; x++) {
            for (int y = 0; y < VMAX; y++) {
              int newX = x;
              int newY = y;
              if (l <= i && i  <= r) {
                newX ^= v;
              }
              if (l <= j && j <= r) {
                newY ^= v;
              }
              newCnt[x][y] += cnt[x][y];
              newCnt[newX][newY] += cnt[x][y];
            }
          }
          for (int x = 0; x < VMAX; x++) {
            for (int y = 0; y < VMAX; y++) {
              cnt[x][y] = newCnt[x][y] % mod;
              newCnt[x][y] = 0;
            }
          }
        }
      }

      for (int x = 0; x < VMAX; x++) {
        for (int y = 0; y < VMAX; y++) {
          if (i == j) {
            if (x == y) {
              answer += (ll) cnt[x][x] * x % mod * x % mod * ways[i][j] % mod;
            }
          } else {
            answer += (ll) 2 * cnt[x][y] * x % mod * y % mod * ways[i][j] % mod;
          }
        }
      }
    }
  }

  std::cout << answer % mod;

  return 0;
}

Compilation message

xorsum.cpp:6:2: warning: #warning That's the baby, that's not my baby [-Wcpp]
    6 | #warning That's the baby, that's not my baby
      |  ^~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 0 ms 600 KB Output is correct
2 Correct 1 ms 344 KB Output is correct
3 Runtime error 2 ms 604 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 600 KB Output is correct
2 Correct 1 ms 344 KB Output is correct
3 Runtime error 2 ms 604 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2037 ms 2652 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 31 ms 348 KB Output is correct
2 Correct 27 ms 348 KB Output is correct
3 Correct 31 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 31 ms 348 KB Output is correct
2 Correct 27 ms 348 KB Output is correct
3 Correct 31 ms 348 KB Output is correct
4 Execution timed out 2037 ms 500 KB Time limit exceeded
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 600 KB Output is correct
2 Correct 1 ms 344 KB Output is correct
3 Runtime error 2 ms 604 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 600 KB Output is correct
2 Correct 1 ms 344 KB Output is correct
3 Runtime error 2 ms 604 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 600 KB Output is correct
2 Correct 1 ms 344 KB Output is correct
3 Runtime error 2 ms 604 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -