이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
using namespace std;
struct Entry {
int at, ac, tc;
};
vector<Entry> A;
void
init(string X, string Y) {
int N = X.size();
A.clear();
A.reserve(N);
for(int i = 0; i < N; ++i) {
char x = X[i];
char y = Y[i];
int at = (x == 'A' && y == 'T') - (x == 'T' && y == 'A');
int ac = (x == 'A' && y == 'C') - (x == 'C' && y == 'A');
int tc = (x == 'T' && y == 'C') - (x == 'C' && y == 'T');
if(i > 0) {
Entry e = A[i-1];
at += e.at;
ac += e.ac;
tc += e.tc;
}
A[i] = Entry {
at, ac, tc
};
}
}
int
get_distance(int x, int y) {
Entry a = A[x];
Entry b = A[y];
int at = b.at - a.at;
int ac = b.ac - a.ac;
int tc = b.tc - a.tc;
// AT -> AT
// TC -> CT
// we can swap AT with TC to get AC
int remaining = abs(at) + abs(ac) + abs(tc);
int swaps = (y - x + 1) - remaining;
if(at == tc) {
int swapped = abs(at);
ac += at;
at = 0;
tc = 0;
// changes
if(ac != 0) {
return -1;
}
swaps += swapped;
}
return swaps;
}
# | 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... |