# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
484017 | Pulgster | Mutating DNA (IOI21_dna) | C++17 | 40 ms | 6972 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "dna.h"
#include <bits/stdc++.h>
using namespace std;
// a[i][from][to];
const int maxn = 100005;
int a[maxn][3][3];
int get(char &c){
if(c == 'A'){
return 0;
} else if(c == 'T'){
return 1;
} else{
return 2;
}
assert(false);
}
void init(string s, string b) {
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
a[0][i][j] = 0;
}
}
for(int i=0;i<s.size();i++){
for(int j=0;j<3;j++){
for(int k=0;k<3;k++){
a[i][j][k] = a[i-1][j][k];
}
}
a[i][get(s[i])][get(b[i])]++;
}
}
int get_distance(int x, int y) {
vector<vector<int>> cur(3, vector<int>(3));
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
cur[i][j] += a[y][i][j];
if(x != 0){
cur[i][j] -= a[x-1][i][j];
}
}
}
int twocycles = 0;
for(int i=0;i<3;i++){
for(int j=i+1;j<3;j++){
int mn = min(cur[i][j], cur[j][i]);
twocycles += mn;
cur[i][j] -= mn;
cur[j][i] -= mn;
}
}
if((cur[0][1] == cur[1][2] && cur[1][2] == cur[2][0]) && (cur[0][2] == cur[2][1] && cur[2][1] == cur[1][0])){
int threecycles = max(cur[0][1], cur[1][0]);
return (2 * threecycles) + twocycles;
}
return -1;
}
Compilation message (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... |