Submission #336764

#TimeUsernameProblemLanguageResultExecution timeMemory
336764super_j6Abduction 2 (JOI17_abduction2)C++14
27 / 100
5053 ms394724 KiB
#include <iostream> #include <cstdio> #include <algorithm> #include <array> #include <unordered_map> using namespace std; #define endl '\n' #define ll long long #define pi pair<int, int> #define f first #define s second typedef array<int, 2> T; T operator+(T x, T y){ return {x[0] + y[0], x[1] + y[1]}; } const int mxn = 50000, k = 4, w = 10; const T d[k] = {{1, 0}, {0, 1}, {-1, 0}, {0, -1}}; int n[2], q; int a[2][mxn]; unordered_map<int, int> dp[k][mxn]; int sol(T x, int y){ for(int i = 0; i < 2; i++) if(x[i] < 0 || x[i] >= n[i]) return 0; int ret = 0; if(dp[y][x[0]].count(x[1])){ ret = dp[y][x[0]][x[1]]; }else if(a[!(y & 1)][x[!(y & 1)]] > a[y & 1][x[y & 1]]){ ret = sol(x + d[y], y); if(!(x[0] % w) || !(x[1] % w)) dp[y][x[0]][x[1]] = ret; }else{ for(int i = 0; i < 2; i++){ int z = (y + 2 * i + 1) % k; ret = max(ret, sol(x + d[z], z)); } dp[y][x[0]][x[1]] = ret; } return ++ret; } int main(){ ios::sync_with_stdio(0); cin.tie(0); cin >> n[0] >> n[1] >> q; for(int i = 0; i < 2; i++) for(int j = 0; j < n[i]; j++){ cin >> a[i][j]; } while(q--){ T x; for(int i = 0; i < 2; i++) cin >> x[i], x[i]--; int ret = 0; for(int i = 0; i < k; i++) ret = max(ret, sol(x + d[i], i)); cout << ret << endl; } 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...
#Verdict Execution timeMemoryGrader output
Fetching results...