/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 7ms 584.0 KiB
#3 Accepted 14ms 780.0 KiB
#4 Accepted 14ms 1.102 MiB
#5 Accepted 13ms 768.0 KiB
#6 Accepted 14ms 956.0 KiB
#7 Accepted 92ms 1.195 MiB
#8 Accepted 23ms 540.0 KiB
#9 Accepted 23ms 1.02 MiB
#10 Accepted 22ms 948.0 KiB
#11 Accepted 200ms 4.289 MiB
#12 Accepted 572ms 19.676 MiB
#13 Accepted 16ms 1.594 MiB
#14 Accepted 14ms 1.527 MiB
#15 Accepted 20ms 1.633 MiB
#16 Accepted 15ms 1.547 MiB
#17 Accepted 18ms 1.555 MiB
#18 Accepted 573ms 19.875 MiB
#19 Accepted 19ms 1.777 MiB
#20 Accepted 469ms 19.68 MiB
#21 Time Exceeded ≥2095ms ≥70.684 MiB
#22 Accepted 194ms 70.535 MiB
#23 Accepted 199ms 70.531 MiB
#24 Accepted 334ms 70.535 MiB
#25 Accepted 89ms 7.59 MiB
#26 Accepted 770ms 70.621 MiB
#27 Accepted 203ms 70.535 MiB
#28 Accepted 164ms 70.539 MiB
#29 Time Exceeded ≥2084ms ≥70.656 MiB

Code

/*
 *Copyright (c) Swadheen Islam Robi (SIR01)
 *Created on Tue Dec 10 2024 3:03:19 PM
 */
//Sorry test case number cant be counted ;), ei submission emni dilam!! from the frustration.

#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 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;

    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();
    }
    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:36:27
Judged At
2024-12-10 11:36:27
Judged By
Score
88
Total Time
≥2095ms
Peak Memory
≥70.684 MiB