# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
437367 | Gabp | DNA 돌연변이 (IOI21_dna) | C++17 | 76 ms | 6192 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
const int N = 1e5 + 5;
int cnt[3][3][N];
void init(std::string a, std::string b) {
int n = a.size();
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
cnt[i][j][0] = 0;
}
}
for (int i = 0; i < n; i++) {
int first,second;
switch (a[i]) {
case 'A': first = 0; break;
case 'C': first = 1; break;
case 'T': first = 2;
}
switch (b[i]) {
case 'A': second = 0; break;
case 'C': second = 1; break;
case 'T': second = 2;
}
for (int j = 0; j < 3; j++) {
for (int k = 0; k < 3; k++) {
cnt[j][k][i + 1] = cnt[j][k][i];
if (j == first && k == second)
cnt[j][k][i + 1]++;
}
}
}
}
int get_distance(int x, int y) {
int curr[3][3];
for (int i = 0; i < 3; i++) {
int compare1 = 0, compare2 = 0;
for (int j = 0; j < 3; j++) {
curr[i][j] = cnt[i][j][y + 1] - cnt[i][j][x];
compare1 += cnt[i][j][y + 1] - cnt[i][j][x];
compare2 += cnt[j][i][y + 1] - cnt[j][i][x];
}
if (compare1 != compare2)
return -1;
}
int ans = 0;
int extra = 0;
for (int i = 0; i < 3; i++) {
for (int j = i + 1; j < 3; j++) {
int temp = std::min(curr[i][j], curr[j][i]);
ans += temp;
curr[i][j] -= temp;
curr[j][i] -= temp;
extra += curr[i][j] + curr[j][i];
}
}
ans += extra / 3 * 2;
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... |