Submission #360013

# Submission time Handle Problem Language Result Execution time Memory
360013 2021-01-27T12:03:50 Z Poimidorka Maxcomp (info1cup18_maxcomp) C++14
0 / 100
1 ms 492 KB
#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

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


signed main() {
#ifdef LC
	assert(freopen("input.txt", "r", stdin));
#endif
	ios::sync_with_stdio(0); cin.tie(0);
	cin >> n >> m;
	int ans = -1;
	bool f = 0;
	set<pair<pair<int, int>, pair<int, int>>> q;
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < m; j++) {
			cin >> mat[i][j];
			if (mat[i][j] != mat[0][0])
				f = 1;			
			opt[i][j] = -1;
			q.insert({{mat[i][j], -1}, {i, j}});
		}
	}
	while (!q.empty()) {
		auto v = *q.rbegin();
		q.erase(v);
		int x = v.y.x;
		int y = v.y.y;
		// cout << x << ' ' << y << ' ' << v.x.y << endl;
		for (auto el : dir) {
			int x2 = el.x + x;
			int y2 = el.y + y;
			if (!check(x2, y2) || mat[x2][y2] > mat[x][y])
				continue;
			// cout << x2 << ' ' << y2 << endl;
			if (opt[x2][y2] < opt[x][y] + mat[x][y] - mat[x2][y2] - 1) {
				q.erase({{mat[x2][y2], opt[x2][y2]}, {x2, y2}});
				opt[x2][y2] = max(opt[x2][y2], opt[x][y] + mat[x][y] - mat[x2][y2] - 1); 
				q.insert({{mat[x2][y2], opt[x2][y2]}, {x2, y2}});
				ans = max(ans, opt[x2][y2]);
			}
		}
	}
	// if (ans == -1 && f)
	// 	assert(0);
	cout << ans;
	return 0;
}

Compilation message

maxcomp.cpp: In function 'int main()':
maxcomp.cpp:44:7: warning: variable 'f' set but not used [-Wunused-but-set-variable]
   44 |  bool f = 0;
      |       ^
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
3 Correct 0 ms 364 KB Output is correct
4 Incorrect 1 ms 364 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 492 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
3 Correct 0 ms 364 KB Output is correct
4 Incorrect 1 ms 364 KB Output isn't correct
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 364 KB Output is correct
2 Correct 1 ms 364 KB Output is correct
3 Correct 0 ms 364 KB Output is correct
4 Incorrect 1 ms 364 KB Output isn't correct
5 Halted 0 ms 0 KB -