# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
565977 | FairyWinx | DNA 돌연변이 (IOI21_dna) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
#include <vector>
#include <array>
#include <algorithm>
#define all(a) a.begin(), a.end()
using namespace std;
vector<int> a, b;
void init(std::string _a, std::string _b) {
a.resize(_a.size());
b.resize(_b.size());
for (int i = 0; i < (int) _a.size(); ++i) {
if (_a[i] == 'A') {
a[i] = 0;
} else if (_a[i] == 'T') {
a[i] = 1;
} else {
a[i] = 2;
}
if (_b[i] == 'A') {
b[i] = 0;
} else if (_b[i] == 'T') {
b[i] = 1;
} else {
b[i] = 2;
}
}
}
int get_distance(int x, int y) {
array<int, 3> c1, c2;
int sum = 0;
fill(all(c1), 0);
fill(all(c2), 0);
map<pair<int, int>, int> tmp;
for (int i = x; i <= y; ++i) {
if (a[i] != b[i]) {
int a1 = a[i], a2 = b[i];
sum += 2;
if (tmp[{a2, a1}]) {
--tmp[{a2, a1}];
--sum;
} else {
++tmp[{a1, a2}];
}
}
}
return sum;
}