b****y 发帖数: 257 | 1 Dear Da niu,
I am trying to compare the performance of several algorithms that has
different succ rates and use
different number of resources. For example, algo A has overall succ rate of
60% while using 10 resources,
algo B has overal succ rate of 85% while using 30 resources. It's hard to
compare them since algo A has
less succ rate but use less resources. I am thinking of normalize their
success rate to the same(i.e. 95%) by
assuming each run will have the same succ probability, i.e ea |
|
b****y 发帖数: 257 | 2 Dear Da niu,
I am trying to compare the performance of several algorithms that has
different succ rates and use
different number of resources. For example, algo A has overall succ rate of
60% while using 10 resources,
algo B has overal succ rate of 85% while using 30 resources. It's hard to
compare them since algo A has
less succ rate but use less resources. I am thinking of normalize their
success rate to the same(i.e. 95%) by
assuming each run will have the same succ probability, i.e each run |
|
g*****g 发帖数: 212 | 3 电面2似乎本版讨论过几次了,我还贴过code。基本就是 high和low boundary一次遍历。
onsite 1: 楼主回家后的思路是对的
onsite 2:
1)前->末遍历 记录到目前位置,使用过的 digit
2)末->前遍历 对每一个数字,查找是否存在,大于自己切未使用的数字,如找到,
break
如果2)到了头,且头是9,需要进位
3) 从break的位置开始-》末遍历,依次选取最小且未使用的数字
string next(string input)
{
int n = input.size();
vector v(10, 0);
// step 1: set used digits
for(int i=0; i
{
v[input[i]-'0'] = 1;
}
// step 2: find bigger unused digit at cur pos
int i= n-1;
for(i=n-1; i>=0; i--)
{
... 阅读全帖 |
|
b******1 发帖数: 13 | 4 果然被TAG录了。
还报了succes academy,似乎也不错的样子。
该去哪儿啊,tag有点远,succes academy就走路三分钟。 |
|
t*****s 发帖数: 2933 | 5 英国,德国全卖光了.
Windows Phone 7 are surpassing all expectations of the operators.For the
moment, the operator O2 has sold all he had available HTC HD7. Sales are
around 80,000 terminals, and have had to request more units of it.Windows
Phone 7 is a great operating system.
In turn, Vodafone Germany reports that pre-booking of Mozart HTC and Samsung
Omnia 7 have exceeded initial projections, so have had to increase the
original offer. Even E-plus, a small German carrier, shows the same
arguments for th... 阅读全帖 |
|
k********k 发帖数: 5617 | 6 http://hi.baidu.com/zzb8917716/blog/item/665fb17e03c8d73c0cd7da
法文版
La Parure.
Par Guy de Maupassant
C'était une de ces jolies et charmantes filles, nées, comme par une erreur
du destin, dans une famille d'employés. Elle n'avait pas de dot, pas d'esp
érances, aucun moyen d'être connue, comprise, aimée, épousée par un
homme riche et distingué ; et elle se laissa marier avec un petit commis du
ministère de l'instruction publique.
Elle fut simple, ne pouvant être parée ; mais malheureuse comme une ... 阅读全帖 |
|
s*****n 发帖数: 2174 | 7 你这问题问的本身就很模糊, 根本看不明白.
什么是 resource, 什么是 N, 你这个实验
到底是run in parrellel 还是 sequential.
你一开始所谓的 succ rate 应该指的是单次的成功率.
可是最后考虑的succ rate, 又是sequential experiments
恰好在第N+1次首次成功的概率. 这都是完全不相关
的概念.
如果就是想 知道 什么样的N能够使得
(1-a)^N * a = 0.95,
那么取一下log不就行了吗? |
|
e***e 发帖数: 3872 | 8 // Corresponding exception safe pseudo-code:
...
succ = 0;
do {
try {
finished(curProject) || recital(equations);
sleep(2 * 24 * 3600 * 1000L);
do {
clearTimeOut(all);
setTimeOut(watching);
sincere(Words);
Words >> outStream;
clearTimeOut(watching);
setTimeOut(patience);
} until (respond(Words) >= _FANCY_THRESHOLD_);
clearTimeOut(all);
succ = 1;
}
catch (Shyne |
|
|
|
w********9 发帖数: 8613 | 11
本来我就已经提过德语语法的性和格,但是德语的发音十分规则。而法语有它自己的问
题。从初学开始到后来,法语发音一直会是很大的问题。这个问题也影响了通过法语过
来的词汇。比如,像t这样一个辅音字母在英语词汇的结尾也会不读音。
第146、149和150贴里给出了最常用英语词汇具备的非常强的德语联系。
参照最常见的近1000最常见的英语词汇的大致的法语对应词汇:
the l'
of de
and et
a une
to à
in po
is est
be être
that que
was était
he il
for pour
it elle
with avec
as comme
his sa
I I
on sur
have avoir
at à
by par
not pas
they ils
this ce produit
had eu
are sont
but mais
from à partir
or ou
she t-elle
an une
which qui
you vous
one une
we nous
... 阅读全帖 |
|
|
|
|
T*****m 发帖数: 3480 | 15 【 以下文字转载自 Military 讨论区 】
发信人: TrueSam (MITBBS政法委书记), 信区: Military
标 题: 靠, 国人真有钱啊:张丹阳花了2百万美元和巴菲特共进午餐
发信站: BBS 未名空间站 (Tue Jun 30 10:31:26 2009, 美东)
Hedge fund manager Zhao Danyang, who paid $2.11 million for lunch with
Warren Buffett
Meet Buffett's $2.1 million lunch partner
Hong Kong hedge fund manager Zhao Danyang says the Omaha sage is "so famous,
but he's just like your friend"
NEW YORK (Fortune) -- Plunking down $2.11 million for a steak lunch might
seem a tad bit excessive, even to a succes |
|
|
x*b 发帖数: 5723 | 17 这种设计就是明显为了更好的操控和风阻不惜牺牲空间而转向coupe化,这个只有
Porsche敢这么做啊。
转一些专业评论:
Three engine choices at the introduction:
Macan S: 3.0 V6 B-Turbo 340hp, 460NM (340lbs-ft)
Macan Turbo: 3.6 V6 Bi-Turbo 400hp, 550NM (405 lbs-ft)
Macan S Diesel: 3.0 V6 258hp, 600NM (442lbs-ft)
- 0-62mph for Macan Turbo: 4.5 sec
- 4-cylinder engines arrive in 2015 (Both petrol and diesel)
- Much lower center of gravity than Audi Q5 (Macan is an inch lower),
despite being slightly heavier than Q5.
- They call it the most agile SUV ever... 阅读全帖 |
|
T*********e 发帖数: 9208 | 18 success?可惜出来的是difficulty |
|
|
|
|
t****u 发帖数: 72 | 22 还有个问题,email里没有提具体的salary package和给多长时间考虑,可以问一下吗?Email 原文如下:
Dear xxx,
Congratulations, your academic job request has been accepted and will be
provided with the expected package (salary with all benefits and
compensations). In the case of acceptance of an offer, please send the
following information:
Date of Birth
Place of Birth
Nationality
If you are married
Information about your wife and children (Names ,Date of Birth, Place of
Birth, and Nationality.)
copy of the passport
We wish you succes |
|
f****4 发帖数: 1359 | 23 节点里面存the number of nodes of current tree/subtree是
clrs 14.1
BST min & BST Succ
clrs 12.2
clrs(Introduction to algorithms 2nd) |
|
o****e 发帖数: 916 | 24 【 以下文字转载自 HomeSecurity 俱乐部 】
发信人: okeoke (okeoke), 信区: HomeSecurity
标 题: 买了个高清的摄像头 HooToo HT-IP210HDP
发信站: BBS 未名空间站 (Sat Jun 1 01:58:09 2013, 美东)
720p的图像质量确实不错,android应用设置也很方便。p2p还是很不错的,再也不用设
port forwarding了。
缺点还是连拍不行。两个老摄像头只支持640*480,但好歹一秒能拍5张,这个高清的摄
像头居然1秒只能拍1张,一个人走过,运气好才能拍个全的,实在有点鸡肋。
软件有点糙,好多莫名其妙的英文,比如 Test succ, 这个也太懒了。 |
|
a*****g 发帖数: 19398 | 25 (原文标题--The Best Language for Math )
Sept. 9, 2014
【注:刚才遇到一位平时熟悉的美国教育学系的教授.
她说看了这篇文章,以为是我写的.
因为平时我发表的中文对数学教育影响的观点,
以及围棋数学这个游戏对儿童数学能力的影响,
基本上已经覆盖了这篇文章中几位教授的工作.
我说暂时还和文章里面的教授们没有交集,
不过早晚有一天他们会知道围棋数学.】
What's the best language for learning math? Hint: You're not reading it.
Chinese, Japanese, Korean and Turkish use simpler number words and express m
ath concepts more clearly than English, making it easier for small children
to learn counting and arithmetic, research shows.
The language gap is drawing... 阅读全帖 |
|
a*****g 发帖数: 19398 | 26 (原文标题--The Best Language for Math )
Sept. 9, 2014
【注:刚才遇到一位平时熟悉的美国教育学系的教授.
她说看了这篇文章,以为是我写的.
因为平时我发表的中文对数学教育影响的观点,
以及围棋数学这个游戏对儿童数学能力的影响,
基本上已经覆盖了这篇文章中几位教授的工作.
我说暂时还和文章里面的教授们没有交集,
不过早晚有一天他们会知道围棋数学.】
What's the best language for learning math? Hint: You're not reading it.
Chinese, Japanese, Korean and Turkish use simpler number words and express m
ath concepts more clearly than English, making it easier for small children
to learn counting and arithmetic, research shows.
The language gap is drawing... 阅读全帖 |
|
u*****a 发帖数: 6276 | 27 Quote:
4. Do HYP discriminate against Asian-Americans?
To address the question of whether HYP discriminate against Asian-Americans,
it is instructive to review the Department of Education Office of Civil
Rights’ (OCR) findings from its investigation into this matter. In 1990,
OCR concluded that Harvard did not discriminate against Asian-Americans on
the basis of race but rather that Asians were disadvantaged by Harvard’s
admissions preferences for legacies (children of alumni) and recruited
ath... 阅读全帖 |
|
y***q 发帖数: 98 | 28 Job Title: Research Assistant (Post Doctoral Fellow)
Department: Institute of Nanoscale of Material Science and Engineering /
Nano
Annual Salary: Salary will be commensurate with experience and education
.
Description: A research assistant (Post Doctoral Fellow) position is ava
ilable at the Institute of Nanoscale of Material Science and Engineering
and the Department of Electrical Engineering to develop novel semicondu
ctor optoelectronics devices such as lasers and detectors and high frequ
en... 阅读全帖 |
|
|
v****e 发帖数: 19471 | 30 My favorite is "I have no problem with Microsoft's succes. They earned it. M
y only problem with Microsoft is that, as a company, they have absolutely no
taste whatsoever..."
you can watch that on youtube. it's sensational. |
|
|
w*******0 发帖数: 14 | 32 How many people succefully submitted the ds160 while the msg says it's on
maintenance? I saw one person said the data may not stored, is it possible?
I did mine, and i got confirmation page too. Is it going to be a problem?
Thanks a lot! |
|
IJ 发帖数: 494 | 33 你的条件直接上EB1a吧
如果不爽就拿到绿卡马上走人
当时其他几个offer的公司也是这么允诺的,所以我也没多想。
,虽然我们公司很大,但是办移民都是外包给外面的律所)。说是,如果律师说有75%
的机会,才能sponsor。没想到律师在收到我的材料半天之内马上就回信了,说我申请
上的概率只有65%。尤其说
的观点,我觉得我都是有充分的例子说明的,并不是强词夺理。可是这回律师没有回,
第二天直接把我的case转给了另外一个律师,让他评估。
律师的观点,然后随便扯了两句空的说要再等等。但是我在看他回复邮件的内容,发现
他竟然是回给另外一个人的。是一个同样我们公司的new hire也要办EB1B,然后我俩都
是65%,所以都不给办(
信说,介于以上两个律师都认为我没有到75%,所以公司不给我办。。。没有任何解释。
我自身的原因,所以他们不给办。我这个情况到底能办EB1B吗?是不是真的会失败?公
司如果不给办,又是为什么呢?钱?怕人拿了绿卡就走?律师不给办是因为怕麻烦,不
赚钱,还是怕失败影响succ |
|
m********t 发帖数: 9426 | 34 我有过类似经历,eb1b叽叽歪歪了好多遍,说我太弱,不给办
我一气之下eb1a pp,一个礼拜批了
当时其他几个offer的公司也是这么允诺的,所以我也没多想。
,虽然我们公司很大,但是办移民都是外包给外面的律所)。说是,如果律师说有75%
的机会,才能sponsor。没想到律师在收到我的材料半天之内马上就回信了,说我申请
上的概率只有65%。尤其说
的观点,我觉得我都是有充分的例子说明的,并不是强词夺理。可是这回律师没有回,
第二天直接把我的case转给了另外一个律师,让他评估。
律师的观点,然后随便扯了两句空的说要再等等。但是我在看他回复邮件的内容,发现
他竟然是回给另外一个人的。是一个同样我们公司的new hire也要办EB1B,然后我俩都
是65%,所以都不给办(
信说,介于以上两个律师都认为我没有到75%,所以公司不给我办。。。没有任何解释。
我自身的原因,所以他们不给办。我这个情况到底能办EB1B吗?是不是真的会失败?公
司如果不给办,又是为什么呢?钱?怕人拿了绿卡就走?律师不给办是因为怕麻烦,不
赚钱,还是怕失败影响succ
。如果有这种evaluation以说的话,一... 阅读全帖 |
|
T****k 发帖数: 1374 | 35 移民改革会戏剧性的展开?
Sen. Chuck Schumer, D-NY, and Sen. Lindsey Graham, R-SC, are believed to
be on the cusp of introducing a new bill in the Senate on Comprehensive
immigration reform.
The Schumer/Graham initiative combines enforcement with earned legal
status for immigrants who are out of status or came in illegally.
Washington sources say they are ready to introduce the bill "any day
now."
God knows the Irish could catch a break on this issue.
The intense lobbying efforts in 2006 and 2007 were succes |
|
a*******e 发帖数: 455 | 36 Jamaca center, 三点多去的,工作人员都闲的很 我们是唯一的client ,简单问了一
句为什么提早来打,然后十几分钟搞定了 |
|
a*******e 发帖数: 455 | 37 建议是: 下午快下班的时候去,人一般不多,工作人员又急着下班,很快就弄好了 |
|
|
|
v*w 发帖数: 260 | 40 请问是不用按照指纹要求的时间而提前去吗?比如收到信就去?谢谢 |
|
c*******n 发帖数: 2629 | 41 请问walk-in如何预约?info pass没有那个选项啊。拿着USCIS的信件去walk-in吧 |
|
|
M*****t 发帖数: 26706 | 43 感觉嫂子写得还是泛了,哥再给你加两条儿,你最好自己再加一两个感人肺腐的小例子
。
Always went beyond expectations to seek ways to help customers and to meet c
ustomers'requirements.
A true team player, work closely with colleagues no matter where they are ph
ysically. Respect coworkers, promote mutual understandings and eventually f
acilitate the working progress. Always ready to help and share knowledges.
Dedicated to deliver the best result possible. Took full ownership of the d
ata and reports generated, make sure it's accurate a... 阅读全帖 |
|
h****y 发帖数: 183 | 44 Dear all,
MIT CEER will be honored to present an informal lunch talk given by the
panel speakers in 2010 Energy Conference one day before the formal
panel discussion. Both of the speakers have tremendous experience and
deep knowledge in energy areas both in the US and in China. Prof. Li
will discuss the recent development of nuclear technologies as well as
renewable in China and Dr. Zhang will discuss the development of clean
coal technologies in China. Also as both of them have been very
succes |
|
t******g 发帖数: 439 | 45 http://www.purdue.edu/newsroom/faculty/2010/101015BOTComp.html
WEST LAFAYETTE, Ind. - The Purdue University Board of Trustees on Friday (Oc
t. 15) approved a modest pay raise to help retain key faculty and staff.
The system-wide compensation plan calls for an increase in merit pay with ad
ditional funds allocated for one-time special merit pay for exceptional perf
ormance. It will be the first raise for any faculty and staff since July 1,
2008.
Board chairman Keith Krach said the raise is critic... 阅读全帖 |
|
w*********n 发帖数: 707 | 46 估计我们这些千年老TA工资每年都会下降
真是干的比牛多,吃的比鸡烧
Oc
ad
perf
,
succe
a |
|
s*******a 发帖数: 8827 | 47 one-time special merit pay for exceptional performance.
这个应该没ta/ra的份吧,否则是挑动群众斗群众啊,后果不堪设想
Oc
ad
perf
,
succe
a |
|
|
h**********6 发帖数: 321 | 49 Bless!
Wish you succeful! |
|
s****2 发帖数: 4569 | 50 hahaha, we sincerely wish/hope many succeful story from TC! |
|