# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
819358 | gesgha | DNA 돌연변이 (IOI21_dna) | C++17 | 29 ms | 9356 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
#include <bits/stdc++.h>
#define fi first
#define se second
#define pb push_back
#define all(x) x.begin(), x.end()
#define pw(x) (1LL << (x))
#define sz(x) (int)x.size()
using namespace std;
template <typename T>
bool umx(T &x, T& y) {
return x < y ? x = y, 1 : 0;
}
template <typename T>
bool umn(T &x, T& y) {
return x > y ? x = y, 1 : 0;
}
using ll = long long;
using pll = pair <ll, ll>;
using pii = pair <int, int>;
const int N = 3e5 + 100;
int n;
int ca[N][3];
int cb[N][3];
int CNT[N][3][3];
int VAL[N];
void init(string a, string b) {
VAL['A'] = 0;
VAL['T'] = 1;
VAL['C'] = 2;
int n = sz(a);
for (int i = 0; i < n; i++) {
if (a[i] == 'A') ca[i][0] = 1;
else if (a[i] == 'T') ca[i][1] = 1;
else if (a[i] == 'C') ca[i][2] = 1;
if (i) {
for (int j = 0; j < 3; j++) ca[i][j] += ca[i - 1][j];
}
}
for (int i = 0; i < n; i++) {
if (b[i] == 'A') cb[i][0] = 1;
else if (b[i] == 'T') cb[i][1] = 1;
else if (b[i] == 'C') cb[i][2] = 1;
if (i) {
for (int j = 0; j < 3; j++) cb[i][j] += cb[i - 1][j];
}
}
for (int i = 0; i < n; i++) {
int x = VAL[a[i]], y = VAL[b[i]];
CNT[i][x][y] = 1;
if (i) {
for (int j = 0; j < 3; j++) {
for (int k = 0; k < 3; k++) CNT[i][j][k] += CNT[i - 1][j][k];
}
}
}
}
int get_distance(int x, int y) {
for (int i = 0; i < 3; i++) {
int c1 = ca[y][i], c2 = cb[y][i];
if (x) {
c1 -= ca[x - 1][i];
c2 -= cb[x - 1][i];
}
if (c1 != c2) return -1;
}
int C[3][3] = {};
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
C[i][j] = CNT[y][i][j];
if (x) C[i][j] -= CNT[x - 1][i][j];
}
}
int ans = 0;
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
int X = min(C[i][j], C[j][i]);
ans += X;
C[i][j] -= X;
C[j][i] -= X;
}
}
bool ws = 0;
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
ans += C[i][j];
if(C[i][j]) ws = 1;
}
}
ans -= ws;
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... |