# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
251946 | nnnnnnnnnnnnnnnn | Lamps (JOI19_lamps) | C++14 | 154 ms | 18160 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;
typedef long long int ll;
typedef vector<int> vi;
typedef pair<int,int> ii;
typedef pair<ll,int> pli;
typedef pair<int,ll> pil;
typedef pair<ll,ll> pll;
const int N = 1e6,inf = 1e9;
int n;
string a,b;
int dp[4][N];
// ->0
// ->1
// flip
int solve()
{
int i,j,k;
for(i=0;i<4;i++)
{
for(j=0;j<n;j++)
{
dp[i][j] = inf;
}
}
if(a[0]==b[0])
{
if(a[0]=='0') dp[0][0] = 1;
else dp[1][0] = 1;
dp[3][0] = 0;
Compilation message (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... |