Submission #839618

#TimeUsernameProblemLanguageResultExecution timeMemory
839618wibulordSelling RNA Strands (JOI16_selling_rna)C++14
0 / 100
6 ms4692 KiB
//#pragma GCC optimize("Ofast") //#pragma GCC optimize("unroll-loops") //#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native") #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #define fast ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); #define endl '\n' #define ll long long #define ull unsigned long long #define db long double #define fi first #define se second #define pb emplace_back #define vi vector<int> #define vii vector<pair<int,int>> #define vll vector<long long> #define pii pair<int, int> #define pll pair<ll, ll> #define pli pair<ll, int> #define pdd pair<db, db> #define iii pair<int, pair<int, int> > #define ms(s, n) memset(s, n, sizeof(s)) #define all(a) a.begin(), a.end() #define uni(a) (sort(all(a)), a.resize(unique(all(a))-a.begin())) #define sz(a) int((a).size()) #define bit(x) bitset<10>((x)) #define MASK(i) (1LL << (i)) #define BIT(x, i) (1 &((x) >> (i))) #define clz(x) __builtin_clz((x)) #define ctz(x) __builtin_ctz((x)) #define popc(x) __builtin_popcount((x)) #define clzll(x) __builtin_clzll((x)) #define ctzll(x) __builtin_ctzll((x)) #define popcll(x) __builtin_popcountll((x)) #define FOR(i, a, b) for (int i = (a), _b = (b); i <= _b; ++i) #define F0R(i, b) for (int i = 0, _b = (b); i < _b; ++i) #define FORd(i, a, b) for (int i = (a), _b = (b); i >= _b; --i) #define F0Rd(i, b) for (int i = (b)-1; i >= 0; i--) #define rep(i, a) for (auto i : a) using namespace std; using namespace __gnu_pbds; template <typename T> using ordered_set = tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>; void print(int x) {cerr << x;} void print(long long x) {cerr << x;} void print(long double x) {cerr << x;} void print(double x) {cerr << x;} void print(unsigned long long x) {cerr << x;} void print(char x) {cerr << x;} void print(bool x) {cerr << (x ? "True" : "False");} void print(string x) {cerr << x;} template <typename T,typename H> void print(pair<T,H> a) {cerr << "("; print(a.fi); cerr << ','; print(a.se); cerr << ')';} template <typename T> void print(T vec) {int cnt=0; cerr << "{"; rep(x,vec) cerr << (cnt++?",":""), print(x); cerr << '}';} void show() {} template <typename Head, typename ...Tail> void show(Head H, Tail ...T){ print(H); if (sizeof...(T)) cerr << ", "; show(T...); } #define debug(X...) cerr << "LINE " << __LINE__ << " - " << "[" << #X << "] = [", show(X), cerr << "]\n" template<typename T1,typename T2> bool ckmax(T1 &x,const T2 &y){if(x<y){x=y; return 1;} return 0;} template<typename T1,typename T2> bool ckmin(T1 &x,const T2 &y){if(y<x){x=y; return 1;} return 0;} inline int gcd(int x,int y){while(y){int tmp=y;y=x%y;x=tmp;} return (x);} inline int lcm(int x,int y){return (int)(x*y)/gcd(x,y);} void read(){} template <typename Head, typename ...Tail> void read(Head &H, Tail &...T) { int sign = 0; char c; for (c = getchar(); !isdigit(c); c = getchar()) if (c == '-') sign = 1; H = c - '0'; for (c = getchar(); isdigit(c); c = getchar()) H = H * 10 + c - '0'; if (sign) H = -H; read(T...); } mt19937 rd(chrono::steady_clock::now().time_since_epoch().count()); ll rand(ll l, ll r){return l + rd()% (r-l+1);} const int MOD = 1000000007; const int mod = 998244353; const int oo = 1061109567; const long long INF = 4557430888798830399; const double PI = acos(-1); const int maxN = 2e5 + 1, maxM = 1e2 + 5; /* /\_/\ (= ._.) / >? \>$ */ string RNA = "AGCU"; int get_val(char c){ F0R(i, 4) if(c == RNA[i]) return i; return -1; } char get_char(int c){ return RNA[c]; } struct Trie1{ struct Node{ int child[4]; int l, r, exist; }; vector<Node> node; int cur; Trie1() : cur(0){ node.resize(cur+1); memset(node[cur].child, -1, sizeof(node[cur].child)); node[cur].l = oo, node[cur].r = -oo, node[cur].exist; } int new_node(){ ++cur; node.resize(cur+1); memset(node[cur].child, -1, sizeof(node[cur].child)); node[cur].l = oo, node[cur].r = -oo, node[cur].exist; return cur; } void add(string s, int id){ int pos = 0; F0R(i, sz(s)){ int c = get_val(s[i]); if(node[pos].child[c] == -1) node[pos].child[c] = new_node(); pos = node[pos].child[c]; ckmin(node[pos].l, id), ckmax(node[pos].r, id); } node[pos].exist++; } pii query(string s){ int pos = 0; F0R(i, sz(s)){ int c = get_val(s[i]); if(node[pos].child[c] == -1) return pii(-1, -1); pos = node[pos].child[c]; } return pii(node[pos].l, node[pos].r); } void dfs(int pos, string curr, vector<string>& res){ FOR(i, 1, node[pos].exist) res.pb(curr); F0R(i, 4) if(node[pos].child[i] != -1){ curr += get_char(i); dfs(node[pos].child[i], curr, res); curr.pop_back(); } } vector<string> sortt(){ vector<string> res; string curr = ""; dfs(0, curr, res); return res; } }; struct Trie2{ struct Node{ int child[4]; vi ids; }; vector<Node> node; int cur; Trie2() : cur(0){ node.resize(cur+1); node[cur].ids.clear(); memset(node[cur].child, -1, sizeof(node[cur].child)); } int new_node(){ ++cur; node.resize(cur+1); node[cur].ids.clear(); memset(node[cur].child, -1, sizeof(node[cur].child)); return cur; } void add(string s, int id){ reverse(all(s)); int pos = 0; F0R(i, sz(s)){ int c = get_val(s[i]); if(node[pos].child[c] == -1) node[pos].child[c] = new_node(); pos = node[pos].child[c]; node[pos].ids.pb(id); } } int query(string s, pii range){ reverse(all(s)); int pos = 0; F0R(i, sz(s)){ int c = get_val(s[i]); if(node[pos].child[c] == -1) return 0; pos = node[pos].child[c]; } int l = lower_bound(all(node[pos].ids), range.fi) - node[pos].ids.begin(); int r = upper_bound(all(node[pos].ids), range.se) - node[pos].ids.begin() - 1; return r - l + 1; } }; void sol(){ int n, q; cin >> n >> q; vector<string> v; F0R(i, n){ string s; cin >> s; v.pb(s); } Trie1 list; for(string s : v) list.add(s, -1); v = list.sortt(); Trie1 trie1; Trie2 trie2; F0R(i, n){ trie1.add(v[i], i+1); trie2.add(v[i], i+1); } while(q--){ string s, t; cin >> s >> t; pii range = trie1.query(s); if(range.fi == -1) cout << "0\n"; else cout << trie2.query(t, range) << '\n'; } } signed main(){ #define TASK "nhap" if(fopen(TASK".inp", "r")){ freopen(TASK".inp", "r", stdin); freopen(TASK".out", "w", stdout); } fast; int t = 1; // cin >> t; while(t--) sol(); clog << "\nTime elapsed: " << 1000 * clock() / CLOCKS_PER_SEC << " ms\n"; }

Compilation message (stderr)

selling_rna.cpp: In function 'int main()':
selling_rna.cpp:259:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  259 |         freopen(TASK".inp", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
selling_rna.cpp:260:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  260 |         freopen(TASK".out", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...