# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
839483 | daoquanglinh2007 | Selling RNA Strands (JOI16_selling_rna) | C++17 | 845 ms | 67144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int NM = 1e5, MOD = 1e9+7, LOG = 17, inf = 1e9+7;
int N, M;
string P[2*NM+5], Q[2*NM+5];
vector <int> pref[2*NM+5], suff[2*NM+5];
int id_pref[2*NM+5], id_suff[2*NM+5], val[2*NM+5], pos[2*NM+5], bit[2*NM+5], ans[NM+5];
int c(char ch){
if (ch == 'A') return 0;
if (ch == 'G') return 1;
if (ch == 'C') return 2;
return 3;
}
void process(string &S, vector <int> &f){
f.resize(S.size()+1);
f[0] = 0;
for (int i = 1; i <= S.size(); i++)
f[i] = ((ll)f[i-1]*4+c(S[i-1]))%MOD;
}
int lcp(vector <int> &f1, vector <int> &f2){
int l = 1, r = min(f1.size(), f2.size())-1, res = 0;
while (l <= r){
int mid = (l+r)/2;
컴파일 시 표준 에러 (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... |