# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
636747 | imeimi2000 | DNA 돌연변이 (IOI21_dna) | C++17 | 41 ms | 7364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
#include <cstring>
#include <algorithm>
using namespace std;
int n;
int cnt[100005][3][3];
void init(string a, string b) {
n = a.size();
int C[256];
C['A'] = 0;
C['C'] = 1;
C['T'] = 2;
for (int i = 1; i <= n; ++i) {
memcpy(cnt[i], cnt[i - 1], sizeof(cnt[i]));
++cnt[i][C[a[i - 1]]][C[b[i - 1]]];
}
}
int get_distance(int x, int y) {
int D[3][3];
memcpy(D, cnt[y + 1], sizeof(D));
for (int i = 0; i < 3; ++i) for (int j = 0; j < 3; ++j) D[i][j] -= cnt[x][i][j];
int ans = 0;
for (int i = 0; i < 3; ++i) {
for (int j = i + 1; j < 3; ++j) {
int v = min(D[i][j], D[j][i]);
ans += v;
D[i][j] -= v;
D[j][i] -= v;
}
}
int v = min({ D[0][1], D[1][2], D[2][0] });
D[0][1] -= v;
D[1][2] -= v;
D[2][0] -= v;
ans += v + v;
v = min({ D[1][0], D[2][1], D[0][2] });
D[1][0] -= v;
D[2][1] -= v;
D[0][2] -= v;
ans += v + v;
for (int i = 0; i < 3; ++i) for (int j = 0; j < 3; ++j) if (i != j && D[i][j]) return -1;
return ans;
}
컴파일 시 표준 에러 (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... |