제출 #716249

#제출 시각아이디문제언어결과실행 시간메모리
716249kidlinDNA 돌연변이 (IOI21_dna)C++17
컴파일 에러
0 ms0 KiB
#include (dna.h)
#include<bits/stdc++.h>
using namespace std;
string s,t;
void init(string a,string b){
    s=a,t=b;
}
int get_distance(int x, int y)
{
        int T0=0,C0=0,A0=0,T1=0,A1=0,C1=0;
        int res=0;
        for(int j=x; j<=y; j++)
        {
            if(s[j]=='T') T0++;
            if(s[j]=='C') C0++;
            if(s[j]=='A') A0++;
            if(t[j]=='T') T1++;
            if(t[j]=='C') C1++;
            if(t[j]=='A') A1++;
            if(s[j]!=t[j]) res++;
        }
        if(T0!=T1 || C0!=C1 || A1!=A0)return -1;
        if(res%2==0) return res/2 ;
        return res/2+1 ;
}

컴파일 시 표준 에러 (stderr) 메시지

dna.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
    1 | #include (dna.h)
      |          ^