# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1070506 | vjudge1 | Selling RNA Strands (JOI16_selling_rna) | C++17 | 112 ms | 60244 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
using lli = long long;
const int maxN = 1e5 + 5;
const int maxS = 4e6 + 5;
const int maxA = 4;
int tr[maxS][maxA],cnt,h[maxS];
string q[maxN],s[maxN],p[maxN],s1[maxN];
int n,m,idn[maxN],idm[maxN],res[maxN];
int tk(char c)
{
if (c == 'G') return 0;
if (c == 'U') return 1;
if (c == 'C') return 2;
if (c == 'A') return 3;
}
void add(string s)
{
int node = 0;
for (char c : s)
{
if (tr[node][tk(c)] == 0) tr[node][tk(c)] = ++cnt;
node = tr[node][tk(c)];
h[node]++;
}
}
void del(const string& s)
{
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |