# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
694946 | nasir_bashirov | DNA 돌연변이 (IOI21_dna) | C++17 | 60 ms | 13280 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
using namespace std;
long long hsh[85], tbl[5][5][100005], cnt[5][100005], t[5][5];
void init(string a, string b){
hsh['A'] = 1;
hsh['C'] = 2;
hsh['T'] = 3;
a = ' ' + a;
b = ' ' + b;
for(int i = 1; i < a.size(); i++){
cnt[hsh[a[i]]][i]++, cnt[hsh[b[i]]][i]--;
for(int j = 1; j <= 3; j++){
cnt[j][i] += cnt[j][i - 1];
}
for(int j = 1; j <= 3; j++){
for(int k = 1; k <= 3; k++){
tbl[j][k][i] = tbl[j][k][i - 1];
}
}
tbl[hsh[a[i]]][hsh[b[i]]][i]++;
}
}
int get_distance(int x, int y){
x++, y++;
for(int i = 1; i <= 3; i++){
if(cnt[i][y] != cnt[i][x - 1]){
return -1;
}
}
for(int i = 1; i <= 3; i++){
for(int j = 1; j <= 3; j++){
t[i][j] = tbl[i][j][y] - tbl[i][j][x - 1];
}
}
long long res = 0, temp;
temp = min(t[1][2], t[2][1]);
res += temp, t[1][2] -= temp, t[2][1] -= temp;
temp = min(t[1][3], t[3][1]);
res += temp;
temp = min(t[2][3], t[3][2]);
res += temp;
return res + (max(t[1][2], t[2][1])) * 2;
}
컴파일 시 표준 에러 (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... |