# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
376140 | daniel920712 | Lamps (JOI19_lamps) | C++14 | 1091 ms | 81772 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
char a[1000005];
char b[1000005];
bool have[1000005]={0};
int DP[1000005],N;
int F(int here)
{
int i,tt;
if(here==N) return 0;
if(have[here]) return DP[here];
have[here]=1;
if(a[here]==b[here]) DP[here]=F(here+1);
else DP[here]=F(here+1)+1;
tt=0;
for(i=here;i<N;i++)
{
if(b[i]=='1'&&(i==here||b[i-1]=='0')) tt++;
DP[here]=min(DP[here],F(i+1)+tt+1);
}
tt=0;
for(i=here;i<N;i++)
{
if(b[i]=='0'&&(i==here||b[i-1]=='1')) tt++;
DP[here]=min(DP[here],F(i+1)+tt+1);
}
tt=0;
for(i=here;i<N;i++)
{
if(a[i]==b[i]&&(i==here||a[i-1]!=b[i-1])) tt++;
DP[here]=min(DP[here],F(i+1)+tt+1);
}
return DP[here];
}
int main()
{
int M,ans=0,i;
scanf("%d",&N);
scanf("%s %s",a,b);
printf("%d\n",F(0));
return 0;
}
컴파일 시 표준 에러 (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... |