由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 两UINT数相乘,再加上一个UINT数,最少需要多少个bit?
相关主题
请教一个careercup第四版上的一个题目狗狗家面筋
问下careercup上的这一题攒rp,Amazon两轮电话面经
请教一个面试问题,careercup上的问几道题
面经-facebook, amazon,telenav, quantcast问个bloomberg的老题
问一个facebook的电面题问道数组元素连续相乘的名题
atoi的溢出处理的想法分享amazon onsite ( rejected)
10分钟前的G家电面面经报个小Offer,同时分享找工作的经历
Splunk面经 (转载)Google的面经
相关话题的讨论汇总
话题: 2n话题: uint话题: bits话题: bit话题: careercup
进入JobHunting版参与讨论
1 (共1页)
n*****g
发帖数: 178
1
Careercup上有一个小题,想问问大家怎么得出2N这个答案?:
Assuming you have three N bit unsigned integers a, b and c, what is the min
number of bits you would need to store the result of a * b + c?
谢啦!
S**I
发帖数: 15689
2
2N

min

【在 n*****g 的大作中提到】
: Careercup上有一个小题,想问问大家怎么得出2N这个答案?:
: Assuming you have three N bit unsigned integers a, b and c, what is the min
: number of bits you would need to store the result of a * b + c?
: 谢啦!

n*****g
发帖数: 178
3

怎么得出的?

【在 S**I 的大作中提到】
: 2N
:
: min

p*****2
发帖数: 21240
4

Prelude> 999*999+999
999000

【在 n*****g 的大作中提到】
:
: 怎么得出的?

S**I
发帖数: 15689
5
max of a, b and c is 2^n-1; (2^n-1) * (2^n-1) + (2^n-1) = 2^2n - 2^n. 2n
bits is enough.

【在 n*****g 的大作中提到】
:
: 怎么得出的?

l*******b
发帖数: 2586
6
2N+1?
l*******b
发帖数: 2586
7
got it wrong... what a shame

【在 l*******b 的大作中提到】
: 2N+1?
b*****e
发帖数: 131
8
log(A*B) = logA + LogB = N + N =2N
1 (共1页)
进入JobHunting版参与讨论
相关主题
Google的面经问一个facebook的电面题
MS onsite 归来,新鲜面经,巨长,顺便求祝福atoi的溢出处理的想法
问个算法题910分钟前的G家电面面经
不用大整数如何计算组合数?Splunk面经 (转载)
请教一个careercup第四版上的一个题目狗狗家面筋
问下careercup上的这一题攒rp,Amazon两轮电话面经
请教一个面试问题,careercup上的问几道题
面经-facebook, amazon,telenav, quantcast问个bloomberg的老题
相关话题的讨论汇总
话题: 2n话题: uint话题: bits话题: bit话题: careercup