# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
856970 | 2023-10-05T02:56:53 Z | TS_2392 | Selling RNA Strands (JOI16_selling_rna) | C++14 | 135 ms | 231772 KB |
#include <bits/stdc++.h> using namespace std; #define fileIO(name) if(fopen(name".inp", "r")) {freopen(name".inp", "r", stdin); freopen(name".out", "w", stdout);} #define SPEED ios_base :: sync_with_stdio(0); cin.tie(0); cout.tie(0) #define all(a) a.begin(), a.end() #define lwb lower_bound #define upb upper_bound #define sz(a) (int) a.size() #define eb emplace_back const int N = 2e6 + 10; vector <int> through[N]; int trie[2][4][N], L[N], R[N]; int n, m, trie_sz[2]; string s[N], DNA = "ACGT"; void add_str(string & s, int j, int t, bool r = 0){ int v = 1; for (int i = 0; i < sz(s); i++){ char u = s[r ? sz(s) - 1 - i : i]; int c = find(all(DNA), u) - DNA.begin(); if (!trie[t][c][v]) trie[t][c][v] = trie_sz[t]++; v = trie[t][c][v]; if (t == 0){ if (L[v] == 0) L[v] = j; R[v] = max(R[v], j); } else through[v].eb(j); } } int query(string & s, int t, bool r = 0){ int v = 1; for (int i = 0; i < sz(s); i++) { char u = s[r ? sz(s) - 1 - i : i]; int c = find(all(DNA), u) - DNA.begin(); v = trie[t][c][v]; if (!v) return 0; } return v; } int main(){ SPEED; fileIO("rna"); cin >> n >> m; trie_sz[0] = trie_sz[1] = 2; for (int i = 0; i < n; i++) cin >> s[i]; sort(s, s + n); for (int i = 0; i < n; i++){ add_str(s[i], i + 1, 0); add_str(s[i], i + 1, 1, 1); } for (int i = 0; i < m; i++){ string s, t; cin >> s >> t; int I = query(s, 0), I2 = query(t, 1, 1); int p1 = lwb(all(through[I2]), L[I]) - through[I2].begin(); int p2 = upb(all(through[I2]), R[I]) - through[I2].begin(); cout << max(0, p2 - p1) << '\n'; } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 100 ms | 227404 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 103 ms | 231772 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 135 ms | 228004 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 100 ms | 227404 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |