Redian新闻
>
请问wedding dress哪里买啊?
avatar
请问wedding dress哪里买啊?# Fashion - 美丽时尚
a*e
1
题目如下:
Given a 2D array of black and white entries representing a maze with
designated entrance and exit points, find a path from the entrance to the
exit, if one exists.
答案是
class Coordinate {
public:
int x, y;
const bool operator==(const Coordinate &that) const {
return (x == that.x && y == that.y);
}
};
bool is_feasible(const Coordinate &cur, const vector> &maze) {
return cur.x >= 0 && cur.x < maze.size() &&
cur.y >= 0 && cur.y < maze[cur.x].size() &&
maze[cur.x][cur.y] == 0;
}
bool search_maze_helper(vector> &maze, const Coordinate &cur,
const Coordinate &e, vector &path) {
if (cur == e) {
return true;
}
const array, 4> = {0, 1, 0, -1, 1, 0, -1, 0};
for (const array &s : shift) {
Coordinate next{cur.x + s[0], cur.y + s[1]};
if (is_feasible(next, maze)) {
maze[next.x][next.y] = 1;
path.emplace_back(next);
if (search_maze_helper(maze, next, e, path)) {
return true;
}
path.pop_back();
// maze[next.x][next.y] = 0; //这句在答案中没有,是不是答案错了?
}
}
return true;
}
vector search_maze(vector> maze, const Coordinate &s
, const Coordinate &e) {
vector path;
maze[s.x][s.y] = 1;
path.emplace_back(s);
if (search_maze_helper(maze, s, e, path)==false) {
path.pop_back();
}
return path;
}
其中有一个地方我觉得答案不正确并注释出来了,请问我想的对不对?多谢~
avatar
n*t
2
485批准前就结婚了,但没有帮办绿卡。这样485批准拿到绿卡后给配偶补办绿卡的情况
,多久内可以补办?还有,和一起交485时拿绿卡速度类似吗?谢谢
avatar
x*7
3
不是说加州海岸有污染,
但是很多人在海岸线钓鱼,这些鱼能吃吗?
avatar
r*t
4
我预算很有限……500刀以下……
嗯,想要那种短的白裙子+很长很长的veil……
大家说说看哪里搞定比较好?
有outlet卖婚纱的不?
avatar
b*a
5
I don't think there is any problem since the problem is only looking for "a"
path from source to destination. If you unset the visited notation, the
algorithm will become much slower. Therefore, I think this implementation is
pretty good in my opinion.
P.S. I think you can always ask the authors questions by emailing them. From
their amazon reviews, it seems they are really responsive and knowledgeable
.
avatar
b*s
6
如果结婚在拿绿卡之前,应该都可以follow to join,没有时间限制吧。只要你的PD
current.
avatar
s*9
7
怎么不能吃啊,一条半条的又毒不死,天天吃就难说了。

【在 x*7 的大作中提到】
: 不是说加州海岸有污染,
: 但是很多人在海岸线钓鱼,这些鱼能吃吗?

avatar
h*3
8
david bridal
avatar
a*e
9
多谢回复!
经大神指点,我才发现原来对这个问题的思考不够深入。
我原来做这种题只知道一味的恢复递归调用之前的状态。
如果这道题还是恢复状态的话,就会造成对一个点重复的搜索。
如果不恢复状态,这个解法就类似于DP with memory了,不知道我理解的是否正确?
多谢~~

a"
is
From
knowledgeable

【在 b*****a 的大作中提到】
: I don't think there is any problem since the problem is only looking for "a"
: path from source to destination. If you unset the visited notation, the
: algorithm will become much slower. Therefore, I think this implementation is
: pretty good in my opinion.
: P.S. I think you can always ask the authors questions by emailing them. From
: their amazon reviews, it seems they are really responsive and knowledgeable
: .

avatar
l*g
10
chinese are immuned.. no worry..

【在 x*7 的大作中提到】
: 不是说加州海岸有污染,
: 但是很多人在海岸线钓鱼,这些鱼能吃吗?

avatar
S*t
11
nordstrom也有婚礼用品
avatar
J*3
12
加上楼主那句 是回溯构建所有能到达终点的路径?
这种只找 ‘a’ path 的DFS下去就行?没必要回溯?不知道理解对不对
avatar
z*n
13
尽是墨兄弟在pier钓
肯定比天朝好多地方干净多了
污染的确很严重

【在 x*7 的大作中提到】
: 不是说加州海岸有污染,
: 但是很多人在海岸线钓鱼,这些鱼能吃吗?

avatar
b*a
14
I think you mean recursion with memorization (i.e., DP). I probably won't
call it DP, however, since they all use recursion, its feeling is similar
and I agree what you said :)

【在 a******e 的大作中提到】
: 多谢回复!
: 经大神指点,我才发现原来对这个问题的思考不够深入。
: 我原来做这种题只知道一味的恢复递归调用之前的状态。
: 如果这道题还是恢复状态的话,就会造成对一个点重复的搜索。
: 如果不恢复状态,这个解法就类似于DP with memory了,不知道我理解的是否正确?
: 多谢~~
:
: a"
: is
: From

avatar
h*h
15
要看什么鱼吧。
avatar
x*7
16
想想有点怕

【在 s*******9 的大作中提到】
: 怎么不能吃啊,一条半条的又毒不死,天天吃就难说了。
avatar
x*7
17
不是pier,是近海
开出去一段

【在 z*********n 的大作中提到】
: 尽是墨兄弟在pier钓
: 肯定比天朝好多地方干净多了
: 污染的确很严重

avatar
h*h
18
那问题不大,菜市场的鱼大多从那来, 除非不吃鱼,自己钓的还新鲜。

【在 x*7 的大作中提到】
: 不是pier,是近海
: 开出去一段

avatar
x*7
19
我不太吃海鱼,基本都是淡水鱼和
阿拉斯加的那些海产品。

【在 h*h 的大作中提到】
: 那问题不大,菜市场的鱼大多从那来, 除非不吃鱼,自己钓的还新鲜。
avatar
s*9
20
不是说淡水鱼污染更厉害么?

【在 x*7 的大作中提到】
: 我不太吃海鱼,基本都是淡水鱼和
: 阿拉斯加的那些海产品。

avatar
x*7
21
不是污染吧,淡水鱼用药物多吧

【在 s*******9 的大作中提到】
: 不是说淡水鱼污染更厉害么?
avatar
s*9
22
美国这边有养殖的鱼卖?

【在 x*7 的大作中提到】
: 不是污染吧,淡水鱼用药物多吧
avatar
b*t
23
据一位搞水质的朋友说,从long beach到santa monica区域水质量很差,有排污管,其它
地方都好.OC附近的海域很干净.
avatar
x*7
24
这个说法比较靠谱
躲开水质差区。

【在 b********t 的大作中提到】
: 据一位搞水质的朋友说,从long beach到santa monica区域水质量很差,有排污管,其它
: 地方都好.OC附近的海域很干净.

avatar
S*t
25
鱼还没钓到前,没必要担心吃鱼的问题

【在 x*7 的大作中提到】
: 这个说法比较靠谱
: 躲开水质差区。

avatar
x*7
26
钓到了再考虑吃不吃,不就完了?

【在 S********t 的大作中提到】
: 鱼还没钓到前,没必要担心吃鱼的问题
avatar
s*9
27
哈哈,钓鱼还真是个技术活儿。

【在 S********t 的大作中提到】
: 鱼还没钓到前,没必要担心吃鱼的问题
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。