# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1025308 | cpdreamer | DNA 돌연변이 (IOI21_dna) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
#include <bits/stdc++.h>
using namespace std;
struct ct{
int a;
int c;
int t;
};
string s,t;
void init(std::string &a, std::string &b) {
s=a;
t=b;
}
bool compare (ct a,ct b){
if(a.a==b.a && a.c==b.c && a.t==b.t)
return true;
return false;
}
int get_distance(int x, int y) {
ct state_s={0, 0, 0};
ct state_t={0, 0, 0};
int c=y-x+1;
for(int i=x;i<=y;i++){
if(s[i]=='A')state_s.a++;
if(s[i]=='C')state_s.c++;
if(s[i]=='T')state_s.t++;
if(t[i]=='A')state_t.a++;
if(t[i]=='C')state_t.c++;
if(t[i]=='T')state_t.t++;
if(s[i]==t[i] || compare(state_s,state_t))c--;
if(i==y && !compare(state_s,state_t))
return -1;
}
return c;
}