# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
774727 | SanguineChameleon | DNA 돌연변이 (IOI21_dna) | C++17 | 32 ms | 8584 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e5 + 20;
int diff[maxn][3];
int cnt[maxn][3][3];
void init(string a, string b) {
int n = a.size();
for (int i = 1; i <= n; i++) {
for (int x = 0; x < 3; x++) {
diff[i][x] = diff[i - 1][x];
for (int y = 0; y < 3; y++) {
cnt[i][x][y] = cnt[i - 1][x][y];
}
}
int x = a[i - 1] == 'A' ? 0 : a[i - 1] == 'T' ? 1 : 2;
int y = b[i - 1] == 'A' ? 0 : b[i - 1] == 'T' ? 1 : 2;
cnt[i][x][y]++;
diff[i][x]++;
diff[i][y]--;
}
}
int get_distance(int lt, int rt) {
lt++;
rt++;
for (int x = 0; x < 3; x++) {
if (diff[rt][x] != diff[lt - 1][x]) {
# | 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... |