# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1013590 | nomen_nescio | DNA 돌연변이 (IOI21_dna) | C++17 | 32 ms | 7448 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dna.h"
using namespace std;
const int TAILLE_MAX = 100000;
int cumul[3][3][TAILLE_MAX];
int convertInt(char c)
{
if (c == 'A')
return 0;
if (c == 'C')
return 1;
return 2;
}
int nbOccurences[3][3];
void init(std::string a, std::string b)
{
for (int i = 0; i < a.length(); i++)
{
int n1, n2;
n1 = convertInt(a[i]);
n2 = convertInt(b[i]);
if (n1 != n2)
{
nbOccurences[n2][n1]++;
}
for (int i1 = 0; i1 < 3; i1++)
{
for (int i2 = 0; i2 < 3; i2++)
{
cumul[i1][i2][i] = nbOccurences[i1][i2];
}
}
}
}
int get_distance(int x, int y)
{
int distance = 0;
int difference[3][3];
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
if (x == 0)
difference[i][j] = cumul[i][j][y];
else
difference[i][j] = cumul[i][j][y] - cumul[i][j][x-1];
}
}
int nbCCrees = 0, nbACrees = 0, nbTCrees = 0;
for (int i = 0; i < 3; i++) // dans le cas de 1 mais on en fait 2x trop
{
for (int j = 0; j < 3; j++)
{
if (i != j)
{
int minI = min(difference[i][j], difference[j][i]);
distance += minI;
difference[i][j] -= minI;
difference[j][i] -= minI;
if (difference[i][j] != 0)
{
if (i == 0)
nbACrees -= difference[i][j];
if (j == 0)
nbACrees += difference[i][j];
if (i == 1)
nbCCrees -= difference[i][j];
if (j == 1)
nbCCrees += difference[i][j];
if (i == 2)
nbTCrees -= difference[i][j];
if (j == 2)
nbTCrees += difference[i][j];
}
}
}
}
int diffAC = max(difference[0][1], difference[1][0]);
int diffAT = max(difference[0][2], difference[2][0]);
int diffCT = max(difference[1][2], difference[2][1]);
if (diffAC == diffAT && diffAC == diffCT && nbACrees == 0 && nbCCrees == 0 && nbTCrees == 0)
{
return distance + 2*diffAC;
}
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... |