-
Notifications
You must be signed in to change notification settings - Fork 0
/
2D Hopscotch.cpp
77 lines (71 loc) · 2.31 KB
/
2D Hopscotch.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//{ Driver Code Starts
// Initial Template for C++
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
// User function Template for C++
class Solution{
public:
int hopscotch(int n, int m, vector<vector<int>> mat, int ty, int i, int j) {
int sum = 0;
if(ty == 0) {
if(i-1 >= 0) sum += mat[i-1][j];
if(i+1 < n) sum += mat[i+1][j];
if(j+1 < m) sum += mat[i][j+1];
if(j-1 >= 0) sum += mat[i][j-1];
if(j%2 != 0) {
if(i+1 < n and j-1 >= 0) sum += mat[i+1][j-1];
if(i+1 < n and j+1 < m) sum += mat[i+1][j+1];
}
else {
if(i-1 >= 0 and j-1 >= 0) sum += mat[i-1][j-1];
if(i-1 >= 0 and j+1 < m) sum += mat[i-1][j+1];
}
}
else {
if(i-2 >= 0) sum += mat[i-2][j];
if(i+2 < n) sum += mat[i+2][j];
if(j+2 < m) sum += mat[i][j+2];
if(j-2 >= 0) sum += mat[i][j-2];
if(i-1 >= 0) {
if(j-2 >= 0) sum += mat[i-1][j-2];
if(j+2 < m) sum += mat[i-1][j+2];
}
if(i+1 < n) {
if(j-2 >= 0) sum += mat[i+1][j-2];
if(j+2 < m) sum += mat[i+1][j+2];
}
if(j%2 != 0) { // odd j
if(i-1 >= 0 and j-1 >= 0) sum += mat[i-1][j-1];
if(i-1 >= 0 and j+1 < m) sum += mat[i-1][j+1];
if(i+2 < n and j-1 >= 0) sum += mat[i+2][j-1];
if(i+2 < n and j+1 < m) sum += mat[i+2][j+1];
}
else { // even j
if(i+1 < n and j-1 >= 0) sum += mat[i+1][j-1];
if(i+1 < n and j+1 < m) sum += mat[i+1][j+1];
if(i-2 >= 0 and j-1 >= 0) sum += mat[i-2][j-1];
if(i-2 >= 0 and j+1 < m) sum += mat[i-2][j+1];
}
}
return sum;
}
};
//{ Driver Code Starts.
int main(){
int t;
cin>>t;
while(t--){
int n, m, ty, i, j;
cin>>n>>m;
vector<vector<int>> mat(n, vector<int>(m, 0));
for(int i = 0;i < n;i++)
for(int j = 0;j < m;j++)
cin>>mat[i][j];
cin>>ty>>i>>j;
Solution ob;
cout<<ob.hopscotch(n, m, mat, ty, i, j)<<"\n";
}
return 0;
}
// } Driver Code Ends