이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = (int) 1e9 + 1e6 + 123;
const ll LINF = (ll) 1e18 + 1e9 + 123;
#define rep(i, s, t) for (auto i = (s); i < (t); ++(i))
#define per(i, s, t) for (auto i = (s); i >= (t); --(i))
#define sz(x) ((int)(x).size())
#define mp make_pair
#define pb push_back
bool mini(auto &x, const auto &y) {
if (y < x) {
x = y;
return 1;
}
return 0;
}
bool maxi(auto &x, const auto &y) {
if (y > x) {
x = y;
return 1;
}
return 0;
}
void run();
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
run();
return 0;
}
const int N = (int) 1000 + 5;
int n, m;
int a[N][N], dp[N][N];
bool vis[N][N];
const int dx[4] = {-1, 1, 0, 0};
const int dy[4] = {0, 0, -1, 1};
bool check(int i, int j) {
return 0 <= min(i, j) && i < n && j < m;
}
void run() {
rep(i, 0, N) rep(j, 0, N) dp[i][j] = INF;
cin >> n >> m;
rep(i, 1, n + 1) {
rep(j, 1, m + 1) {
cin >> a[i][j];
dp[i][j] = a[i][j] + 1;
}
}
rep(i, 1, n + 1) {
rep(j, 1, m + 1) {
mini(dp[i][j], min(dp[i - 1][j] + 1, dp[i][j - 1] + 1));
}
per(j, m, 1) {
mini(dp[i][j], min(dp[i - 1][j] + 1, dp[i][j + 1] + 1));
}
}
per(i, n, 1) {
rep(j, 1, m + 1) {
mini(dp[i][j], min(dp[i + 1][j] + 1, dp[i][j - 1] + 1));
}
per(j, m, 1) {
mini(dp[i][j], min(dp[i + 1][j] + 1, dp[i][j + 1] + 1));
}
}
int ans = -INF;
rep(i, 1, n + 1) rep(j, 1, m + 1) maxi(ans, a[i][j] - dp[i][j]);
cout << ans << "\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |