# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
497217 | Maqsut_03 | DNA 돌연변이 (IOI21_dna) | C++17 | 786 ms | 3088 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "dna.h"
using namespace std;
string a, b, a1, b1;
int n;
int arr[26];
void init(string a0, string b0) {
a = a0;
b = b0;
a1 = a;
b1 = b;
n = a.length();
}
int get_distance(int x, int y) {
int ans = 0;
a = a1;
b = b1;
memset(arr, 0, sizeof(arr));
for (int i = x; i <= y; i++)
arr[a[i]]++, arr[b[i]]--;
for (int i = 0; i < 26; i++)
if (arr[i] != 0) return -1;
a = a.substr(x, y);
b = b.substr(x, y);
// cout << a << " " << b << "\n";
for (int i = 0; i <= y - x; i++)
for (int j = i; j <= y - x; j++){
if (a[j] == b[i] && i != j) {
ans ++;
swap(a[i], a[j]);
}
}
return ans;
}
컴파일 시 표준 에러 (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... |