topics

全部话题 - 话题: scrambled
首页 1 2 3 4 5 末页 (共10页)

发帖数: 1
1
HILLARY IS SCRAMBLING AS NEW POLL SHOWS TRUMP CUT CLINTON’S LEAD IN HALF IN
JUST ONE WEEK
M*****s
发帖数: 203
2
比如"aabb"和"abab"为什么返回是true呢,是不是我对scramble string的理解有问题
f*********m
发帖数: 726
3
来自主题: JobHunting版 - 关于leetcode的Scramble String问题
在网上找到一个方法,但不知是否正确(http://csjobinterview.wordpress.com/2012/05/07/google-scramble-string/),大家有什么好的方法吗?
谢谢。
w****x
发帖数: 2483
f*********i
发帖数: 197
5
来自主题: JobHunting版 - 关于leetcode的Scramble String问题
我刚才想到了一个可以对付duplicated characters的方法,请看
http://csjobinterview.wordpress.com/2012/06/29/google-scramble-
思路还是不断的merge,从一个character开始不断向前或者向后延伸,看最终是否能够
还原目标string。
请各位不吝赐教
N****p
发帖数: 1691
6
来自主题: JobHunting版 - LeetCode Scramble String 疑问
为什么bdac 不是 abcd 的Scramble?是我题意理解错误么?
j*****y
发帖数: 1071
7
来自主题: JobHunting版 - scramble string 怎么用dp 阿?
s1, s2
dp[i, j, k] 表示 s1[i] 和 s2[j] 为起点的长度为 k的 substring 是 scramble
string
这么一来就是三维了 ?
j*****y
发帖数: 1071
8
来自主题: JobHunting版 - scramble string 怎么用dp 阿?
多谢二爷, 我的思路和你是一样的。
只不过要生成一个三维的矩阵,感觉有点犯怵阿 :)

scramble
l*******b
发帖数: 2586
9
来自主题: JobHunting版 - scramble string 怎么用dp 阿?
这个好,学习了。想了好久也不会做

scramble
j*****y
发帖数: 1071
10
来自主题: JobHunting版 - scramble string 怎么用dp 阿?
二爷你有没有比较recursive 和 dp 的时间区别,我刚才比较了一下,有点 confuse
跑那个large test cases
recursive 花了 36 milisec
dp 花了 216 milisec
dp 比 recursive 慢了 7倍阿。
看来 c++ 创建 3维的矩阵很慢?

scramble
j*****y
发帖数: 1071
11
来自主题: JobHunting版 - scramble string 怎么用dp 阿?
二爷可否帮我看看这个 dp 的写法是不是有什么地方值得优化的 :)
class Solution {
public:
bool isScramble(string s1, string s2) {
int n = s2.length();
if(s1.length() != n)
{
return false;
}
bool dp[n][n][n]; // dp[i][j][k] means the scrambility of substring
of length k + 1 starting at s1[i] and s2[j];
for(int i = 0; i < n; ++i)
for(int j = 0; j < n; ++j)
for(int k = 0; k < n; ++k)
dp[i][j][k] = false;
for(in... 阅读全帖
l********5
发帖数: 230
12
来自主题: JobHunting版 - scramble string
Accidentely sent a message to you.....misclick ..sry
abcd->acdb->acbd

acbd
scrambled
J****3
发帖数: 427
13
来自主题: JobHunting版 - scramble string
recursive的话 你是循环分割俩string 判断是不是分别是scramble string 吧
比如 isScramble(s1.subtr(0,i), s2.substr(0,i))&&isScramble(s1.substr(i, len
- i), s2.substr(i, len-i)) || isScramble(s1.substr(0, i), s2.substr(len - i,
i))&&isScramble(s1.substr(i, len-i), s2.substr(0, len - i));
这样你会重复计算, 用一个dp[len][s1_start][s2_start] 三维数组去存中间结果解决
e*******8
发帖数: 94
14
来自主题: JobHunting版 - Leetcode Scramble String简单解法
How about "bcde" to "cebd"? the latter is not a scramble string of the
former?
a***e
发帖数: 413
15
刷题巨慢。。。。。
看那些DP的题看得头大,有人面试碰到这个题吗?
https://oj.leetcode.com/problems/scramble-string/
一点都不想做,不知道什么人会出这些题,要弄个三维的table,太夸张了。
g***l
发帖数: 352
16
来自主题: JobHunting版 - Leetcode oj 的"scramble string"
"scramble string"不就是anagram吗?
g***l
发帖数: 352
17
来自主题: JobHunting版 - Leetcode oj 的"scramble string"

是因为“scramble”不能通过分解成binary tree,再swap得到“sramblec”吗?
还是想不通。
b******i
发帖数: 914
18
来自主题: JobHunting版 - Leetcode oj 的"scramble string"
google搜出来的
abcde和bdaec就是anagram,但不是scramble string
d*i
发帖数: 9453
19
☆─────────────────────────────────────☆
mark (花生,微爷远爷的爸爸) 于 (Tue Aug 7 09:44:19 2007) 提到:
看看大家反响如何
☆─────────────────────────────────────☆
whxhm (tmf) 于 (Tue Aug 7 10:06:33 2007) 提到:
真麻烦,俺只做hard boiled egg.:)

☆─────────────────────────────────────☆
mark (花生,微爷远爷的爸爸) 于 (Tue Aug 7 10:09:44 2007) 提到:
儿子不爱吃那种蛋黄阿
☆─────────────────────────────────────☆
nvjishi (nvjishi) 于 (Tue Aug 7 11:45:06 2007) 提到:
什么是scrambled eggs?
我在餐厅看有人点了一道菜,结构像韭菜合子,只不过皮是又厚又松软的鸡蛋饼(就算
OMELET了吧),馅是龙虾肉和蘑
T*******e
发帖数: 4110
20
来自主题: Football版 - 与时俱进,Brady scrambles.
连着几个比赛对手都是mobile qb, 和49的比赛,Brady有两个scrambles还是不错的,
一个给Dola,
一个给 Mitchell.
ET
发帖数: 10701
21
没。
4-man scramble拿好成绩还是不难的。
上次前公司那次,其他几个都不怎么滴,可能就是在90-100间,还拿了7个birdie,那天
我putting是如有神助呀。
m****8
发帖数: 327
22
来自主题: Golf版 - Won the scramble!
原来工作的公司邀请我回去参见他们的outing。
共有四组,我的组只有3人,其中一个是水平很差老头,另一个我不认识。去的时候就
感觉能赢。结果我们组还真赢了,-1, 其他三组分别是+5,+5,+11.
scramble还是蛮有意思的,可以互补,但是感受不到整个活动的气氛。老头的球基本上
无用,但是有一次打了个83yard上果岭,贡献了一把。陌生人距离不错,但是方向无序
。但是和我的互补性较好,一路par下去,觉得很boring,最后弄了3个birdie,两
bogey。自己亮点是打了个长drive,再pw 110yard上,离旗杆2尺,birdie进。
m****8
发帖数: 327
23
来自主题: Golf版 - Won the scramble!
原来工作的公司邀请我回去参见他们的outing。
共有四组,我的组只有3人,其中一个是水平很差老头,另一个我不认识。去的时候就
感觉能赢。结果我们组还真赢了,-1, 其他三组分别是+5,+5,+11.
scramble还是蛮有意思的,可以互补,但是感受不到整个活动的气氛。老头的球基本上
无用,但是有一次打了个83yard上果岭,贡献了一把。陌生人距离不错,但是方向无序
。但是和我的互补性较好,一路par下去,觉得很boring,最后弄了3个birdie,两
bogey。自己亮点是打了个长drive,再pw 110yard上,离旗杆2尺,birdie进。
C******s
发帖数: 1917
24
来自主题: Golf版 - Won the scramble!
赞! scramble 是个很好的比赛方法。
m****8
发帖数: 327
25
来自主题: Golf版 - Won the scramble!
scramble确实是很好的team building游戏。很快就能拉近队友的关系。
N*********6
发帖数: 4372
26
These days in many games, whenever QB scrambles, defensive
linemen fly to him and try to put him down, but those
DBs just don't pay attention to the wide open WRs, then
consequence is easy TDs.
b*******e
发帖数: 6482
27
来自主题: Outdoors版 - alpine scrambling中文叫什么?
学术讨论
Hiking - 远足、健行
Backpacking/Trekking - 徒步
Alpine Scrambling - 爬山
以下需结绳
Rock Climbing - 攀岩
Mountaineering - 登山
h********e
发帖数: 1130
28
来自主题: Outdoors版 - alpine scrambling中文叫什么?
经常去8264.com, 没看见有与scramble相关的帖子
w********m
发帖数: 1137

发帖数: 1
30
这个scramble跟lz第一个例子抵触
m*****n
发帖数: 760
31
想设计一些scramble miR sequence做neg control,请问什么program好用?
h********1
发帖数: 831
32
来自主题: MedicalCareer版 - 关于scramble的准备
感觉match希望不大,如何准备scramble最后一搏?是否只能联系面试过的program?在
规定时间之前尽早联系是否会因violation而被kick out?电话中除了吹一下自己,表
示衷心,还能说什么?
d******e
发帖数: 2541
33
来自主题: MedicalCareer版 - 关于scramble的准备
no way.
basically scramble success rate is decimal for IMG.
if you have no chance for pre- or formal match, be realistic for next year.
dok
e*****a
发帖数: 1334
34
来自主题: MedicalCareer版 - 关于scramble的准备
Not aware of this. Officially NRMP will release the list of unfilled
positions at noon eastern time on Tuesday, March 16, 2010.
The tough part is too many applicants. In 2009 about 13,000 applicants tried
to scramble the 1,087 unfilled positions (more than 700 of those positions
were preliminary year only). However, 1,072 unmatched AMGs joined the party,
this left little chance for independent applicants. I knew in some schools
(Medical College of Wisconsin, for example), faculties made phone ca
a*********d
发帖数: 2763
35
来自主题: MedicalCareer版 - 关于scramble的准备
好像我记得是AMG先scramble,第二天才是CMG,非常难的,与其把希望放在scrabmle上
,还是应该想办法多打开点match/pre-match的路子。
E*******9
发帖数: 152
36
来自主题: MedicalCareer版 - How to prepare scramble?
There are posts in 精华区 about scramble...
I found them helpful. however it already feels intense just by reading them.
..
E*******9
发帖数: 152
37
来自主题: MedicalCareer版 - How to prepare scramble?
I am studying the "programresults2005-2009" from the NRMP website, which
list the quota and the number of matched of each program.
I wonder whether the number of matched includes the number through
successful scramble.
Thanks for any input!!
E*******9
发帖数: 152
38
来自主题: MedicalCareer版 - How to prepare scramble?
um, so in this way, positions will be almost gone after scramble... even for
prelim surgery?

were
s*******i
发帖数: 48
39
来自主题: MedicalCareer版 - scramble suggestions
恭喜大奔, 贺喜大奔!!! 你match不过是迟早的事, 周四等你的好消息.
另外多谢大奔兄弟的及时雨, 俺正在准备Scramble的材料, 准备跳火坑了.
s*****1
发帖数: 273
40
来自主题: MedicalCareer版 - scramble suggestions
Congratulations on your match!
Thanks a lot for sharing the tips for scramble. Will save it for the next year too!
L********8
发帖数: 248
41
来自主题: MedicalCareer版 - Email list for scramble-prelim surg
To those who want to try scramble prelim surgery. You can send group email
based on the list. Please reply, because
it's illegal to post these Emails directly here.
s*******i
发帖数: 48
42
来自主题: MedicalCareer版 - Email list for scramble-prelim surg
大恩也是要言谢的. 如果scramble成功, 一定拜谢.
b****e
发帖数: 227
43
来自主题: MedicalCareer版 - Email list for scramble-prelim surg
can anyone send one copy for me?scramble for friends
L********8
发帖数: 248
44
来自主题: MedicalCareer版 - 接到电话,Scramble成功!!!
一个麦地的朋友刚和我通了电话,和我分享了scramble成功的惊喜和对下一步的计划。
呵呵!一天的疲劳顿消。
这个朋友的经验将不久和大家分享。
b**m
发帖数: 18
45
来自主题: MedicalCareer版 - 我是怎样成功scramble的
潜水很久了,获益非浅。感谢麦地和各位前辈, especially lancet。受 lancet鼓励现
,将scramble成功经历同大家分享, 算作对麦地+lancet 的回馈.
本人情况:step1/2>95, CS pass. 1st attempts.graduation >15 years (大家看到我
ID中的mm,不要以为是美妹,实乃宝妈). 5years 国内临床,US phd, US citizen.
申请了共40个内科,得道2个interviews, including my home school. 当初任为match
的机会很大,因为读书,毕业,工作都没离开home school. 作observe的时候,认识
了PD, several attendings and residents. 且混得很熟. PD还给写了
recommendation letter. After interview, 很多attendings and residents主动要求
在PD面前为我讲好话。vice PD 也对我很满一。当得知没match, 好象埃了当头一棒,
欲哭无
L*****r
发帖数: 722
46
来自主题: MedicalCareer版 - 我是怎样成功scramble的
热烈祝贺!
终于看到有同胞炒鸡蛋成功,大受鼓舞。虽然成功率依然是微乎其微,但至少证明了是
有希望的。虽然我的鸡蛋炒糊了,但是至少证明了当初的努力不是毫无胜算。
学到几点:

list 的贴子。就向他讨要。。。十一点多,我就一一把信发出去了。。这时挨到了12
点,开始忙乱加胡乱的用 eras apply. 刚发出-4-5个病理,电话响了(看来不过12点
半啊?)。
(学点1):要勇敢,要打破常规,接触program 越早越好!
(学点2):要上麦地版,要不怎么可能提前得到list、提前发信?
到了12点,开始忙乱加胡乱的用 eras apply.
(学点3):看来发e-mail 更重要。
(学点4):看来电话面试官只有program coordinator(PC) 一人,没有 PD 甚至没有
Faculty。猜想PC 打来电话之前,根据收到e-mail的资料,基本已经决定要您了,PC
打电话只不过听听您的英文,或者证实一下您说的和写的是否一致。
结论:Scramble 时候,硬指标比面试重要多了。
【建议版主】明年这时,一定将本贴置顶。届时请大家提醒!
R**********n
发帖数: 473
47
来自主题: MedicalCareer版 - Is scramble for ppl who need H1b?
Scramble is for anyone who receives email "You are not matched" on match day
. Not for ones who are prematched or matched.
a****9
发帖数: 773
48
来自主题: MedicalCareer版 - Is scramble for ppl who need H1b?
thanks! In this case, I should be qualified.
However, I am afraid for the visa issue, my chance in scramble will still be
much lower.

day
l*******8
发帖数: 1745
49
来自主题: MedicalCareer版 - Is scramble for ppl who need H1b?
Very hard if u go scramble with in need of H1b visa situation.
n***8
发帖数: 634
50
来自主题: MedicalCareer版 - Is scramble for ppl who need H1b?
SCRAMBLE 出结果的时间又晚一些了, 办H1B, TRAINING LICENSE 都挺花时间的, 现
在理解PROGRAM 为啥喜欢AMG 了。
你PRE MATCH 的条件没谈成吗?
首页 1 2 3 4 5 末页 (共10页)