Submission #523388

#TimeUsernameProblemLanguageResultExecution timeMemory
523388boykutUFO (IZhO14_ufo)C++14
35 / 100
2093 ms15760 KiB
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set; vector<vector<int>> a; vector<vector<long long>> pref; int main() { ios::sync_with_stdio(0); cin.tie(0); int n, m, r, k, p; cin >> n >> m >> r >> k >> p; a = vector<vector<int>>(n, vector<int>(m)); for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cin >> a[i][j]; } } while (k--) { char c; cin >> c; int x, y; cin >> x >> y; int cnt = r; x--; if (c == 'W') { for (int j = 0; j < m && cnt > 0; j++) { if (a[x][j] >= y) { a[x][j]--; cnt--; } } } else if (c == 'E') { for (int j = m - 1; j >= 0 && cnt > 0; j--) { if (a[x][j] >= y) { a[x][j]--; cnt--; } } } else if (c == 'N') { for (int i = 0; i < n && cnt > 0; i++) { if (a[i][x] >= y) { a[i][x]--; cnt--; } } } else { for (int i = n - 1; i >= 0 && cnt > 0; i--) { if (a[i][x] >= y) { a[i][x]--; cnt--; } } } } pref = vector<vector<long long>>(n, vector<long long>(m)); for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { //cout << a[i][j] << ' '; pref[i][j] = a[i][j]; pref[i][j] += (i ? pref[i-1][j] : 0); pref[i][j] += (j ? pref[i][j-1] : 0); pref[i][j] -= (i && j ? pref[i-1][j-1] : 0); } //cout << '\n'; } auto get = [&](int a, int b, int c, int d) ->long long { long long s = pref[c][d]; s -= (a ? pref[a-1][d] : 0); s -= (b ? pref[c][b-1] : 0); s += (a && b ? pref[a-1][b-1] : 0); return s; }; long long ans = LLONG_MIN; for (int i = 0; i + p - 1 < n; i++) { for (int j = 0; j + p - 1 < m; j++) { ans = max(ans, get(i, j, i + p - 1, j + p - 1)); } } cout << ans << '\n'; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...