Submission #688616

# Submission time Handle Problem Language Result Execution time Memory
688616 2023-01-27T21:00:47 Z YENGOYAN Dijamant (COCI22_dijamant) C++17
0 / 70
1 ms 588 KB
    /*
        //\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\\
        \\                                    //
        //  271828___182845__904523__53602__  \\
        \\  87___47____13______52____66__24_  //
        //  97___75____72______47____09___36  \\
        \\  999595_____74______96____69___67  //
        //  62___77____24______07____66__30_  \\
        \\  35___35____47______59____45713__  //
        //                                    \\
        \\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\//
                                                    */
     
    #include <iostream>
    #include <vector>
    #include <set>
    #include <map>
    #include <unordered_map>
    #include <unordered_set>
    #include <cmath>
    #include <climits>
    #include <algorithm>
    #include <random>
    #include <queue>
    #include <deque>
    #include <iomanip>
    #include <string>
    #include <tuple>
    #include <bitset>
    #include <chrono>
    #include <ctime>
    #include <fstream>
    #include <stack>
    #include <cstdio>
     
    using namespace std;
    using ll = long long;
    const int N = 3e5 + 5;
    const ll mod = 1e9 + 7, inf = 1e18;
     
    void solve() {
        int n, m; cin >> n >> m;
        vector<string> v(n);
        for (int i = 0; i < n; ++i) cin >> v[i];
        vector<vector<int>> van(n);
        for (int i = 1; i + 1 < n; ++i) {
            for (int j = 0; j < m; ++j) {
                if (v[i][j] == '#') van[i].push_back(j);
            }
        }
        vector<vector<bool>> uxix_dzax(n, vector<bool>(m)), uxix_aj(n, vector<bool>(m));
        for (int i = 1; i < n - 1; ++i) {
            for (int j = 0; j + 1 < van[i].size(); ++j) {
                int l = van[i][j], r = van[i][j + 1];
                if (l % 2 != r % 2) continue;
                if (r - l == 2) {
                    if (v[i - 1][l + 1] == '#') {
                        uxix_dzax[i][l] = uxix_aj[i][r] = 1;
                    }
                }
                else {
                    if (uxix_dzax[i - 1][l + 1] && uxix_aj[i - 1][r - 1]) {
                        int id = upper_bound(van[i - 1].begin(), van[i - 1].end(), l) - van[i - 1].begin();
                        if (van[i - 1][id] != r - 1) continue;
                        uxix_aj[i][r] = uxix_dzax[i][l] = 1;
                    }
                }
            }
        }
        vector<vector<bool>> tars_dzax(n, vector<bool>(m)), tars_aj(n, vector<bool>(m));
        for (int i = n - 2; i >= 1; --i) {
            for (int j = 0; j + 1 < van[i].size(); ++j) {
                int l = van[i][j], r = van[i][j + 1];
                if (l % 2 != r % 2) continue;
                if (r - l == 2) {
                    if (v[i + 1][l + 1] == '#') {
                        tars_dzax[i][l] = tars_aj[i][r] = 1;
                    }
                }
                else {
                    if (tars_dzax[i + 1][l + 1] && tars_aj[i + 1][r - 1]) {
                        int id = upper_bound(van[i + 1].begin(), van[i + 1].end(), l) - van[i + 1].begin();
                        if (van[i - 1][id] != r - 1) continue;
                        tars_dzax[i][l] = tars_aj[i][r] = 1;
                    }
                }
            }
        }
        int ans = 0;
        for (int i = 1; i < n - 1; ++i) {
            for (int j = 0; j + 1 < van[i].size(); ++j) {
                int l = van[i][j], r = van[i][j + 1];
                if (!uxix_dzax[i][l] || !uxix_aj[i][r]) continue;
                if (!tars_dzax[i][l] || !tars_aj[i][r]) continue;
                // cout << i + 1 << " " << l + 1 << " " << r + 1 << "\n";
                ++ans;
            }
        }
        cout << ans;
    }
     
    int main() {
        ios_base::sync_with_stdio(0);
        cin.tie(NULL);
        //int t; cin >> t;
        //while (t--)	
        solve();
    }

Compilation message

Main.cpp: In function 'void solve()':
Main.cpp:53:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   53 |             for (int j = 0; j + 1 < van[i].size(); ++j) {
      |                             ~~~~~~^~~~~~~~~~~~~~~
Main.cpp:72:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   72 |             for (int j = 0; j + 1 < van[i].size(); ++j) {
      |                             ~~~~~~^~~~~~~~~~~~~~~
Main.cpp:91:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   91 |             for (int j = 0; j + 1 < van[i].size(); ++j) {
      |                             ~~~~~~^~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB Output is correct
2 Correct 1 ms 340 KB Output is correct
3 Runtime error 1 ms 588 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB Output is correct
2 Correct 1 ms 340 KB Output is correct
3 Runtime error 1 ms 588 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -