Submission #360051

#TimeUsernameProblemLanguageResultExecution timeMemory
360051PoimidorkaMaxcomp (info1cup18_maxcomp)C++17
60 / 100
420 ms67268 KiB
#include <iostream> #include <vector> #include <set> #include <map> #include <unordered_map> #include <unordered_set> #include <deque> #include <queue> #include <string> #include <algorithm> #include <tuple> #include <cassert> using namespace std; #define x first #define y second //#define int long long #pragma GCC optimize("O3") #pragma GCC target("sse,sse2,sse3,sse4,tune=native") #pragma GCC optimize("unroll-loops") typedef long long ll; const int maxn = 1e3 + 10; int mat[maxn][maxn]; int opt[maxn][maxn]; vector<pair<int, int>> dir = {{0, -1}, {0, 1}, {1, 0}, {-1, 0}}; int n, m; bool check(int x, int y) { return x >= 0 && y >= 0 && x < n && y < m; } inline ll gt(int x, int y, int z, int t) { return (ll)mat[z][t] - mat[x][y] - abs(z - x) - abs(t - y) - 1; } signed main() { #ifdef LC assert(freopen("input.txt", "r", stdin)); #endif ios::sync_with_stdio(0); cin.tie(0); cin >> n >> m; ll ans = -1; priority_queue<pair<int, pair<int, int>>> q1, q2, q3, q4; vector<pair<int, pair<int, int>>> v(n * m); for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cin >> mat[i][j]; opt[i][j] = -1; v[i * m + j] = {mat[i][j], {i, j}}; } } bool f = 0; sort(v.rbegin(), v.rend()); for (auto & el : v) { int x = el.y.x; int y = el.y.y; if (f) { ans = max(ans, gt(x, y, q1.top().y.x, q1.top().y.y)); ans = max(ans, gt(x, y, q2.top().y.x, q2.top().y.y)); ans = max(ans, gt(x, y, q3.top().y.x, q3.top().y.y)); ans = max(ans, gt(x, y, q4.top().y.x, q4.top().y.y)); } q1.push({mat[x][y] + x + y, {x, y}}); q2.push({mat[x][y] + x - y, {x, y}}); q3.push({mat[x][y] - x + y, {x, y}}); q4.push({mat[x][y] - x - y, {x, y}}); f = 1; } cout << ans; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...