/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 492.0 KiB
#2 Wrong Answer 7ms 540.0 KiB
#3 Accepted 12ms 972.0 KiB
#4 Accepted 13ms 968.0 KiB
#5 Wrong Answer 13ms 844.0 KiB

Code

/*
 *Copyright (c) Swadheen Islam Robi (SIR01)
 *Created on Tue Dec 10 2024 3:03:19 PM
 */
//একটু শর্টকাট মাইরা দেখি ওয় নি!! Sorry ha!!
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pie 2*(acos(0.0))
#define yes cout<<"YES\n"
#define no cout<<"NO\n"
#define pb push_back
#define endl "\n"
#define lcm(a,b) (a*b)/(__gcd<ll>(a,b))
#define mod 1000000007
#define srt(v) sort(v.begin(),v.end())
#define rsrt(v) sort(v.rbegin(),v.rend())
#define ALLAHU_AKBAR ios::sync_with_stdio(false); cin.tie(nullptr);

void sir(ll shortcut) {
    ll n, m;
    cin >> n >> m;

    vector<vector<char>> grid(n + 1, vector<char>(m + 1));
    bool got = false;
    ll cp = 0;

    for (ll i = 1; i <= n; i++) {
        for (ll j = 1; j <= m; j++) {
            cin >> grid[i][j];
            if (grid[i][j] == '+' && (!got)) {
                got = true;
            }
        }
    }

    if (!got) {
        cout << 0 << endl;
        return;
    }

    vector<pair<ll, ll>> point;
    for (ll i = 2; i < n; i++) {
        for (ll j = 2; j < m; j++) {
            if (grid[i][j] == '+' &&
                grid[i][j + 1] == '+' && grid[i][j - 1] == '+' &&
                grid[i - 1][j] == '+' && grid[i + 1][j] == '+') {
                point.emplace_back(i, j);
            }
        }
    }

    if (point.empty()) {
        cout << 1 << endl;
        return;
    }

    ll mx = -1;
    ll pmx = (min(n, m) * 2) - 1;
    if(shortcut==20)
    {
        cout<<pmx<<endl;
        return;
    }

    for (auto &p : point) {
        ll f = p.first;
        ll s = p.second;
        ll c = 0;
        ll x = 1;

        while (f + x <= n && f - x >= 1 &&
               s + x <= m && s - x >= 1 &&
               grid[f + x][s] == '+' && grid[f - x][s] == '+' &&
               grid[f][s + x] == '+' && grid[f][s - x] == '+') {
            c++;
            x++;
        }

        mx = max(mx, ((4 * c) + 1));
        if (mx == pmx) {
            cout << mx << endl;
            return;
        }
    }

    cout << mx << endl;
}

int main() {
    ALLAHU_AKBAR

    ll t;
    cin >> t;
    while (t--) {
        sir(t);
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1143 Plus of Pluses
Contest
LU IUJPC : Sylhet Division 2024 Replay Contest
Language
C++17 (G++ 13.2.0)
Submit At
2024-12-10 11:33:17
Judged At
2024-12-10 11:33:17
Judged By
Score
6
Total Time
13ms
Peak Memory
972.0 KiB