Submission #464833

# Submission time Handle Problem Language Result Execution time Memory
464833 2021-08-14T09:51:54 Z MKutayBozkurt Maxcomp (info1cup18_maxcomp) C++14
15 / 100
5 ms 204 KB
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

#define int long long

int32_t main() {
  ios::sync_with_stdio(0); cin.tie(0);
  int n, m; cin >> n >> m;
  vector<vector<int>> a(n, vector<int>(m));
  for (int i = 0; i < n; i++) {
    for (int j = 0; j < m; j++) {
      cin >> a[i][j];
    }
  }
  int ans = -1e9;
  for (int i = 0; i < n; i++) {
    for (int j = 0; j < m; j++) {
      for (int k = 0; k < n; k++) {
        for (int l = 0; l < m; l++) {
          int temp = max(a[i][j], a[k][l]) - min(a[i][j], a[k][l]);
          if (i == k && j == i) temp--;
          else if (i == k) temp -= abs(j - l) + 1;
          else if (j == l) temp -= abs(i - k) + 1;
          else temp -= abs(i - k) + abs(j - l) + 1;
          ans = max(ans, temp);
        }
      }
    }
  }
  cout << ans << '\n';
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 204 KB Output is correct
2 Correct 5 ms 204 KB Output is correct
3 Correct 4 ms 204 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -