# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
701673 | PenguinsAreCute | Lamps (JOI19_lamps) | C++17 | 94 ms | 49344 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int int64_t
int32_t main() {
int N; cin >> N; string A, B; cin >> A >> B;
int dp[N][3][2]; // idx, got 0 and got 1, got flip
if(A[0] == B[0]) dp[0][0][0] = 0;
else dp[0][0][0] = 1e15;
if(B[0] == 0) dp[0][1][0] = 1;
else dp[0][1][0] = 1e15;
if(B[0] == 1) dp[0][2][0] = 1;
else dp[0][2][0] = 1e15;
if(A[0] != B[0]) dp[0][0][1] = 1;
else dp[0][0][1] = 1e15;
dp[0][1][1] = 2; dp[0][2][1] = 2;
for(int i = 1; i < N; i++) {
int minprev = 1e15;
for(int j = 0; j < 3; j++) for(int k = 0; k < 2; k++) {
minprev = min(minprev, dp[i - 1][j][k]);
}
if(A[i] == B[i]) dp[i][0][0] = minprev;
else dp[i][0][0] = 1e15;
if(B[i] == '0') dp[i][1][0] = min(minprev + 1, min(dp[i - 1][1][0], dp[i - 1][1][1]));
else dp[i][1][0] = 1e15;
if(B[i] == '1') dp[i][2][0] = min(minprev + 1, min(dp[i - 1][2][0], dp[i - 1][2][1]));
else dp[i][2][0] = 1e15;
if(A[i] != B[i]) dp[i][0][1] = min(minprev + 1, min(dp[i - 1][0][1], min(dp[i - 1][1][1], dp[i - 1][2][1])));
else dp[i][0][1] = 1e15;
dp[i][1][1] = min(minprev + 2, min(dp[i - 1][1][0], dp[i - 1][1][1]) + 1);
dp[i][1][1] = min(dp[i][1][1], min(min(dp[i - 1][0][1], dp[i - 1][1][1]), dp[i - 1][2][1]) + 1);
# | 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... |