-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP1030.cpp
59 lines (55 loc) · 1.34 KB
/
P1030.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
#include<algorithm>
#include<vector>
#include<iostream>
#include<string>
#include<stack>
using namespace std;
class Solution {
public:
vector<vector<int>> allCellsDistOrder(int R, int C, int r0, int c0) {
vector<vector<int>> ans;
int fw[4][2]={ {0,1},{1,0},{0,-1},{-1,0} };
int h,t;
auto X=new int[R*C+10];
auto Y=new int[R*C+10];
bool f[100][100];
for (int i=0;i<R;i++) for (int j=0;j<C;j++)
f[i][j]=false;
h=t=0;
X[t]=r0;
Y[t++]=c0;
f[r0][c0]=true;
ans.push_back({r0,c0});
int x,y,xx,yy;
while (h!=t) {
x=X[h];
y=Y[h];
++h;
for (int i=0;i<4;i++) {
xx=x+fw[i][0];
yy=y+fw[i][1];
if (xx>=0 && xx<R && yy>=0 && yy<C && f[xx][yy]!=true) {
f[xx][yy]=true;
ans.push_back({xx,yy});
X[t]=xx;
Y[t]=yy;
t++;
}
}
}
return ans;
}
};
static const auto io_sync_off = []()
{
// turn off sync
std::ios::sync_with_stdio(false);
// untie in/out streams
std::cin.tie(nullptr);
return nullptr;
}();
int main() {
auto res = Solution().xxx;
cout << res <<endl;
return 0;
}