이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef string str;
typedef vector<int> vi;
str a, b;
void init(std::string a1, std::string b2)
{
a = a1;
b = b2;
}
int solve(str a, str b, int c)
{
;
}
int get_distance(int x, int y)
{
str a1 = a.substr(x, y);
str b1 = b.substr(x, y);
int n = a1.length(), c = 0;
if (
(count(a1.begin(), a1.end(), 'A') != count(b1.begin(), b1.end(), 'A')) ||
(count(a1.begin(), a1.end(), 'B') != count(b1.begin(), b1.end(), 'B')) ||
(count(a1.begin(), a1.end(), 'C') != count(b1.begin(), b1.end(), 'C')))
{
return -1;
}
for (int i = 0; i < n; i++)
{
if (a1[i] != b1[i])
c++;
}
return c / 2;
}
컴파일 시 표준 에러 (stderr) 메시지
dna.cpp: In function 'int solve(str, str, int)':
dna.cpp:19:1: warning: no return statement in function returning non-void [-Wreturn-type]
19 | }
| ^
# | 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... |