This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ii pair<int, int>
#define f first
#define s second
#define mp make_pair
int h, w, q;
int A[50000], B[50000];
map<pair<int, ii>, int> memo;
int dx[4] = {-1,0,1,0};
int dy[4] = {0,1,0,-1};
int dp(int i, int j, int d) {
auto memoIdx = mp(i, mp(j, d));
if (memo.count(memoIdx)) {
return memo[memoIdx];
}
int ans = 0;
int k = 1;
while (true) {
int a = i + dx[d]*k, b = j + dy[d]*k;
if (a < 0 || a >= h || b < 0 || b >= w) break;
ans++;
if ((d == 0 || d == 2) && A[a] > B[j]) {
ans += max(dp(a, b, 1), dp(a, b, 3));
break;
}
if ((d == 1 || d == 3) && B[b] > A[i]) {
ans += max(dp(a, b, 0), dp(a, b, 2));
break;
}
k++;
}
return memo[memoIdx] = ans;
}
int main() {
cin.tie(0); ios_base::sync_with_stdio(false);
cin >> h >> w >> q;
for (int i = 0; i < h; i++) cin >> A[i];
for (int i = 0; i < w; i++) cin >> B[i];
for (int i = 0; i < q; i++) {
int s, t; cin >> s >> t; --s; --t;
int best = 0;
for (int j = 0; j < 4; j++) {
best = max(best, dp(s, t, j));
}
cout << best << "\n";
}
return 0;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |