# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1129461 | ozner77 | DNA 돌연변이 (IOI21_dna) | C++17 | 34 ms | 2368 KiB |
#define ll long long
#include <bits/stdc++.h>
using namespace std;
int n;
string a1,b1;
void init(string a,string b){
a1=a;b1=b;
n=a.size();
}
int get_distance(int x, int y){
x-=1;
y-=1;
map<int,int> M;
map<int,int> M1;
int res=0;
for(int i=x;i<=y;i++){
M[a1[i]]++;
M1[b1[i]]++;
if(a1[i]!=b1[i]){
res++;
}
}
bool com=false;
for(auto x:M){
if(x.second==M1[x.first]){
if(res%2==0){
return res/2;
}else{
return (res/2)+1;
}
}else{
return -1;
}
}
}
컴파일 시 표준 에러 (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... |