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 m_p make_pair
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)(x).size())
#define fi first
#define se second
typedef long long ll;
mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
mt19937 rnf(2106);
const int N = 22;
int n, m;
char t[N][N], s[N][N];
bool c[N][N];
int q;
void dfs(int x, int y)
{
if (!(1 <= x && x <= n && 1 <= y && y <= m))
return;
if (c[x][y])
return;
++q;
c[x][y] = true;
if (t[x][y] == '0')
dfs(x + 1, y);
if (t[x - 1][y] == '0')
dfs(x - 1, y);
if (s[x][y] == '0')
dfs(x, y + 1);
if (s[x][y - 1] == '0')
dfs(x, y - 1);
}
map<pair<vector<int>, int>, int> mp;
int rec(vector<int> v, int x)
{
if (v.empty())
return x;
if (mp.find(m_p(v, x)) != mp.end())
return mp[m_p(v, x)];
vector<int> vv = v;
vv.pop_back();
if (x <= 2)
{
return x - rec(vv, v.back());
}
return max(x - rec(vv, v.back()), x - 2 - rec(v, 2));
}
void solv()
{
cin >> n >> m;
for (int i = 0; i <= n; ++i)
{
cin >> (t[i] + 1);
}
for (int i = 1; i <= n; ++i)
{
cin >> s[i];
}
vector<int> v;
for (int i = 1; i <= n; ++i)
{
for (int j = 1; j <= m; ++j)
{
if (!c[i][j])
{
q = 0;
dfs(i, j);
if (t[i][j] == '1' && t[i - 1][j] == '1' && s[i][j] == '1' && s[i][j - 1] == '1')
continue;
v.push_back(q);
}
}
}
sort(all(v));
reverse(all(v));
cout << rec(v, 0) << "\n";
}
int main()
{
#ifdef SOMETHING
freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
#endif // SOMETHING
ios_base::sync_with_stdio(false), cin.tie(0);
int tt = 1;
//cin >> tt;
while (tt--)
{
solv();
}
return 0;
}
# | 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... |