/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 588.0 KiB
#2 Accepted 8ms 708.0 KiB
#3 Accepted 11ms 616.0 KiB
#4 Accepted 13ms 812.0 KiB
#5 Accepted 15ms 564.0 KiB
#6 Accepted 14ms 564.0 KiB
#7 Accepted 63ms 540.0 KiB
#8 Accepted 26ms 540.0 KiB
#9 Accepted 27ms 844.0 KiB
#10 Accepted 26ms 540.0 KiB
#11 Accepted 143ms 844.0 KiB
#12 Accepted 506ms 1.496 MiB
#13 Accepted 17ms 1.277 MiB
#14 Accepted 14ms 1.504 MiB
#15 Accepted 17ms 1.527 MiB
#16 Accepted 16ms 1.5 MiB
#17 Accepted 15ms 1.496 MiB
#18 Accepted 494ms 1.504 MiB
#19 Accepted 20ms 1.52 MiB
#20 Accepted 421ms 1.504 MiB
#21 Time Exceeded ≥2098ms ≥4.527 MiB
#22 Accepted 137ms 4.527 MiB
#23 Accepted 143ms 4.367 MiB
#24 Accepted 168ms 4.367 MiB
#25 Accepted 103ms 4.527 MiB
#26 Accepted 646ms 4.363 MiB
#27 Accepted 155ms 4.504 MiB
#28 Accepted 129ms 4.363 MiB
#29 Accepted 1105ms 4.363 MiB
#30 Accepted 1555ms 4.363 MiB

Code

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
 
#define pb push_back
#define MOD 1000000007
#define vll vector<ll>
#define endl "\n" 
#define all(v) v.begin(), v.end()
#define mem(a,b) memset(a, b, sizeof(a))
#define co(n) cout << n << endl
#define yes cout << "YES" << endl
#define no cout << "NO" << endl
#define fr(x, n) for (int i = x; i < n; ++i)
#define fraction(x) cout << fixed << setprecision(x)
#define Baba_Yaga ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
 
const double eps = 1e-9;
const int N = 2e5+123;
 
ll gcd(ll a,ll b) { return __gcd(a,b); }
ll lcm(ll a,ll b) { return (a*b)/__gcd(a,b); }
 
int dx[] = {0, 0, +1, -1, +1, +1, -1, -1};
int dy[] = {+1, -1, 0, 0, +1, -1, +1, -1};
 

void solve()
{
    ll n, m; cin >> n >> m;
    char arr[n][m];
    ll one  = 0;

    for(int i=0; i<n; i++)
    {
        for(int j=0; j<m; j++)
        {
            cin >> arr[i][j];
            if(arr[i][j] == '+')
            {
                one = 1;
            }
        }
    }
    if(one == 0)
    {
        cout << 0 << endl;
        return;
    }
    
    
    ll maxi = 0;
    for(int i=0; i<n; i++)
    {
        for(int j=0; j<m; j++)
        {
            if(arr[i][j] == '+')
            {
                ll ct = 0;
                for(int k=1; ; k++)
                {
                    if(i+k >= n || j+k >= m || i-k < 0 || j-k < 0 || arr[i+k][j] != '+' || arr[i-k][j] != '+'|| arr[i][j+k] != '+' || arr[i][j-k] != '+')
                    {
                        break;
                    }
                    else ct++;
                }
                maxi = max(maxi, ct);

            }
        }
    }
     
     cout << maxi * 4 + 1 << endl;

}

int main()
{
    Baba_Yaga;
    ll tc = 1; cin >> tc;
    for(int i=1; i<=tc; i++)
    {
       // cout << "Case " << i << ": ";
        solve();
    }   
}

Information

Submit By
Type
Submission
Problem
P1143 Plus of Pluses
Contest
LU IUJPC : Sylhet Division 2024
Language
C++17 (G++ 13.2.0)
Submit At
2024-12-09 06:55:22
Judged At
2024-12-09 06:55:22
Judged By
Score
96
Total Time
≥2098ms
Peak Memory
≥4.527 MiB