Submission #668586

# Submission time Handle Problem Language Result Execution time Memory
668586 2022-12-04T07:56:45 Z Shin Selling RNA Strands (JOI16_selling_rna) C++17
0 / 100
351 ms 1532 KB
#include <bits/stdc++.h>
#define fi first
#define se second
#define mp make_pair

using namespace std;
template <class X, class Y> bool minimize(X &a, Y b) {
    if (a > b) return a = b, true;
    return false;
}
template <class X, class Y> bool maximize(X &a, Y b) {
    if (a < b) return a = b, true;
    return false;
}

const char base[] = {'A', 'G', 'C', 'U'};
const int N = 2e6 + 7;
int node[N][4];
int cnt[N];
int ind[26];
int f[N];
string p, q;

signed main() {
  cin.tie(0)->sync_with_stdio(0);
  auto add = [&](string &s) {
    static int num_node = 0;
    int cur = 0;
    for (int i = 0; i < (int) s.size(); i ++) {
      int c = ind[s[i] - 'A'];
      if (node[cur][c] == 0) {
        node[cur][c] = ++ num_node;
      }
      cur = node[cur][c];
    }
    cnt[cur] ++;
  };

  int res = 0;
  function<void(int, int)> dfs = [&](int u, int sz) {
    if (f[sz] >= (int) q.size() - 1) {
      res += cnt[u];
    }
    for (char c: base) if (node[u][ind[c - 'A']]) {
      int j = f[sz];
      while (j > 0 && q[j] != c) {
        j = f[j - 1];
      }
      if (q[j] == c) {
        j ++;
      }
      f[sz + 1] = j;
      dfs(node[u][ind[c - 'A']], sz + 1);
    }
  };

  for (int i = 0; i < 4; i ++) {
    ind[base[i] - 'A'] = i;
  }
  int n, m; cin >> n >> m;
  for (int i = 1; i <= n; i ++) {
    string s; cin >> s;
    add(s);
  }
  while (m --) {
    cin >> p >> q;
    q += "#";
    res = 0;
    for (int i = 1; i < (int) q.size(); i ++) {
      int j = f[i - 1];
      while (j > 0 && q[j] != q[i]) {
        j = f[j - 1];
      }
      if (q[j] == q[i]) {
        j ++;
      }
      f[i] = j;
    }
    int u = 0, found = true, sz = 0;
    for (int i = 0; i < (int) p.size(); i ++) {
      if (node[u][ind[p[i] - 'A']] == 0) {
        found = false;
        break;
      }
      int j = f[sz];
      while (j > 0 && q[j] != p[i]) {
        j = f[j - 1];
      }
      if (q[j] == p[i]) {
        j ++;
      }
      f[++ sz] = j;
      u = node[u][ind[p[i] - 'A']];
    }
    if (found) {
      dfs(u, sz);
    }
    cout << res << '\n';
  }
  return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 351 ms 1532 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 16 ms 844 KB Output is correct
2 Incorrect 292 ms 788 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -