106002024-04-06 13:05:53szilÚtépítéscpp17Hibás válasz 38/100865ms9220 KiB
#include <bits/stdc++.h>

using ll = long long;
using namespace std;

const int MAXN = 205*205;

vector<int> g[MAXN];
bool vis[MAXN];
char mp[205][205];
int n, m, mt[MAXN];

int to_index(int i, int j) {
    return i*(m+1)+j;
}

bool try_kuhn(int u) {
    if (vis[u]) return false;
    vis[u] = true;
    for (int v : g[u]) {
        if (mt[v] == -1 || try_kuhn(mt[v])) {
            mt[v] = u;
            return true;
        }
    }
    return false;
}

void solve() {
    cin >> n >> m;
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= m; j++) {
            mp[i][j] = '.';
            char c; cin >> c;
            if (c == '\\') {
                int u = to_index(i-1, j-1), v = to_index(i, j);
                g[u].emplace_back(v);
                g[v].emplace_back(u);
            } else if (c == '/') {
                int u = to_index(i, j-1), v = to_index(i-1, j);
                g[u].emplace_back(v);
                g[v].emplace_back(u);
            }
        }
    }
    fill(mt, mt+MAXN, -1);
    int ans = 0;
    for (int i = 0; i <= n; i++) {
        for (int j = 0; j <= m; j++) {
            if (!g[to_index(i, j)].empty()) {
                fill(vis, vis+MAXN, false);
                ans += try_kuhn(to_index(i, j));
            }
        }
    }
    for (int i = 1; i <= n; i++) {
        for (int j = 0; j <= m; j++) {
            int x = to_index(i, j);
            if (mt[x] != -1 && x >= mt[x]) {
                if (x-mt[x] == m - 1) mp[i][j] = '\\';
                else mp[i][j+1] = '/';
            }
        }
    }
    cout << ans/2 << "\n";
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= m; j++) {
            cout << mp[i][j];
        }
        cout << "\n";
    }
}

int main() {
    ios_base::sync_with_stdio(0); cin.tie(0);
    int t = 1;
    // cin >> t;
    while (t--) {
        solve();
    }
    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base38/100
1Elfogadva0/04ms4364 KiB
2Hibás válasz0/061ms6724 KiB
3Részben helyes2/53ms4892 KiB
4Részben helyes2/53ms4732 KiB
5Részben helyes2/53ms4736 KiB
6Részben helyes2/54ms5016 KiB
7Részben helyes2/53ms5044 KiB
8Részben helyes2/54ms4996 KiB
9Részben helyes2/54ms5252 KiB
10Részben helyes2/54ms5460 KiB
11Részben helyes2/58ms5736 KiB
12Részben helyes2/58ms5808 KiB
13Részben helyes2/58ms5824 KiB
14Részben helyes2/56ms5928 KiB
15Részben helyes2/524ms6532 KiB
16Részben helyes2/5119ms8652 KiB
17Részben helyes2/5714ms8604 KiB
18Időlimit túllépés0/5865ms4968 KiB
19Részben helyes2/550ms7880 KiB
20Részben helyes2/574ms9120 KiB
21Részben helyes2/574ms9220 KiB
22Részben helyes2/5625ms8536 KiB