# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1001958 | hacizadal | DNA 돌연변이 (IOI21_dna) | C++17 | 1549 ms | 4724 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define ll long long
#define pll pair<ll, ll>
string s, t;
ll p[100005];
void init(std::string a, std::string b) {
s = a;
t = b;
for (ll i = 0; i<s.length(); i++){
p[i+1] = p[i];
if (s[i] != t[i]) p[i+1]++;
}
}
int get_distance(int x, int y) {
string k = s.substr(x, y-x+1);
string g = t.substr(x, y-x+1);
string a = k;
string b = g;
sort(a.begin(), a.end());
sort(b.begin(), b.end());
if (a != b){
return -1;
}
if (k == g){
return 0;
}
if (y - x <= 2){
if (k[1] == g[1] or k[0] == g[0] or k[2] == g[2]){
return 1;
}
else {
return 2;
}
}
ll cnt = p[y+1] - p[x];
cnt /= 2;
return cnt;
}
컴파일 시 표준 에러 (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... |