# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
442791 | baluteshih | DNA 돌연변이 (IOI21_dna) | C++17 | 50 ms | 6528 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define X first
#define Y second
#define ALL(v) v.begin(), v.end()
#define pb push_back
#define SZ(a) ((int)a.size())
int num[256];
int prea[3][100005], preb[3][100005], same[100005];
int get_sum(int *arr, int l, int r) {
if (l == 0)
return arr[r];
return arr[r] - arr[l - 1];
}
void init(string a, string b) {
int n = SZ(a);
num['A'] = 0, num['T'] = 1, num['C'] = 2;
for (int i = 0; i < n; ++i) {
++prea[num[a[i]]][i];
++preb[num[b[i]]][i];
same[i] = (a[i] == b[i]);
}
for (int i = 1; i < n; ++i) {
prea[0][i] += prea[0][i - 1];
prea[1][i] += prea[1][i - 1];
prea[2][i] += prea[2][i - 1];
preb[0][i] += preb[0][i - 1];
preb[1][i] += preb[1][i - 1];
preb[2][i] += preb[2][i - 1];
same[i] += same[i - 1];
}
}
int get_distance(int x, int y) {
if (get_sum(prea[0], x, y) != get_sum(preb[0], x, y))
return -1;
if (get_sum(prea[1], x, y) != get_sum(preb[1], x, y))
return -1;
if (get_sum(prea[2], x, y) != get_sum(preb[2], x, y))
return -1;
return (y - x + 1 - get_sum(same, x, y)) / 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |