Submission #639304

# Submission time Handle Problem Language Result Execution time Memory
639304 2022-09-09T11:52:54 Z LucaLucaM Maxcomp (info1cup18_maxcomp) C++17
15 / 100
2 ms 212 KB
#include <bits/stdc++.h>

using namespace std;

struct cell
{
    long long x;
    int i, j;
};

bool comp (cell a, cell b)
{
    return !(a.x > b.x);
}

cell a[1000001];

int main()
{
    int n, m;
    cin >> n >> m;

    int N = 0;

    for (int i=0; i<n; i++)
    {
        for (int j=0; j<m; j++)
        {
            int x;
            cin >> x;

            N++;
            a[N].x = x;
            a[N].i = i, a[N].j = j;
        }
    }

    sort (a+1, a+N+1, comp);

    long long ans = 0;

    for (int i=1; i<N; i++)
    {
        for (int j=N; j>i; j--)
        {
            long long d = abs(a[i].i - a[j].i) + abs(a[i].j - a[j].j) + 1;
            long long s = a[j].x - a[i].x - d;

            ans = max(ans, s);
        }
    }

    cout << ans;

    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Incorrect 0 ms 212 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 212 KB Output is correct
2 Correct 2 ms 212 KB Output is correct
3 Correct 2 ms 212 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Incorrect 0 ms 212 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Incorrect 0 ms 212 KB Output isn't correct
4 Halted 0 ms 0 KB -