由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Google 电面 algorithm 问题 (转载)
相关主题
问一个简单问题的算法 (转载)array allocation in c
Algorithm Question: Given an array and a sum value return"brk()" 和 mmap() 有什么区别? (转载)
今天电面又被老印黑了。。。。 (转载)C++一个string的小问题
effective C++里的memory pool 一问:菜鸟请教C问题
why do we still use dynamic allocation?question about structure initializationa and reference
为什么用try catch不住exception?请问有什么c++ algorithm and data structure 好的书吗?
关于内存泄漏C++ Interview Question
alloc这个函数究竟做些啥活呢?内存分配问题
相关话题的讨论汇总
话题: bidder话题: each话题: google话题: algorithm
进入Programming版参与讨论
1 (共1页)
d*****r
发帖数: 57
1
【 以下文字转载自 CS 讨论区 】
发信人: driftor (信天游), 信区: CS
标 题: Google 电面 algorithm 问题
发信站: BBS 未名空间站 (Mon Mar 29 00:02:17 2010, 美东)
N bidders bid on N merchandises. Each bidder provides a bidding price on
every of the N merchandises, P(i,j). How to allocate the merchandises to
each the bidder to maximize the revenue? (Of coz, each merchandise can be
sold to one and only one bidder.)
感觉应该是很基本的问题,可惜本人背景太弱,望不吝赐教,多谢!
x*******u
发帖数: 2074
2
max bipartite问题
用max flow做

【在 d*****r 的大作中提到】
: 【 以下文字转载自 CS 讨论区 】
: 发信人: driftor (信天游), 信区: CS
: 标 题: Google 电面 algorithm 问题
: 发信站: BBS 未名空间站 (Mon Mar 29 00:02:17 2010, 美东)
: N bidders bid on N merchandises. Each bidder provides a bidding price on
: every of the N merchandises, P(i,j). How to allocate the merchandises to
: each the bidder to maximize the revenue? (Of coz, each merchandise can be
: sold to one and only one bidder.)
: 感觉应该是很基本的问题,可惜本人背景太弱,望不吝赐教,多谢!

h*******u
发帖数: 15326
3
Binary Integer Programming
http://www.mathworks.com/products/optimization/demos.html?file=/products/dem
os/shipping/optim/officeassign.html

【在 d*****r 的大作中提到】
: 【 以下文字转载自 CS 讨论区 】
: 发信人: driftor (信天游), 信区: CS
: 标 题: Google 电面 algorithm 问题
: 发信站: BBS 未名空间站 (Mon Mar 29 00:02:17 2010, 美东)
: N bidders bid on N merchandises. Each bidder provides a bidding price on
: every of the N merchandises, P(i,j). How to allocate the merchandises to
: each the bidder to maximize the revenue? (Of coz, each merchandise can be
: sold to one and only one bidder.)
: 感觉应该是很基本的问题,可惜本人背景太弱,望不吝赐教,多谢!

c*****t
发帖数: 1879
4
I think the study link they sent had a answer to this problem.
http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=alg_index
You really should have gone through it.

【在 d*****r 的大作中提到】
: 【 以下文字转载自 CS 讨论区 】
: 发信人: driftor (信天游), 信区: CS
: 标 题: Google 电面 algorithm 问题
: 发信站: BBS 未名空间站 (Mon Mar 29 00:02:17 2010, 美东)
: N bidders bid on N merchandises. Each bidder provides a bidding price on
: every of the N merchandises, P(i,j). How to allocate the merchandises to
: each the bidder to maximize the revenue? (Of coz, each merchandise can be
: sold to one and only one bidder.)
: 感觉应该是很基本的问题,可惜本人背景太弱,望不吝赐教,多谢!

c****n
发帖数: 21367
5
marriage matching problem?

be

【在 d*****r 的大作中提到】
: 【 以下文字转载自 CS 讨论区 】
: 发信人: driftor (信天游), 信区: CS
: 标 题: Google 电面 algorithm 问题
: 发信站: BBS 未名空间站 (Mon Mar 29 00:02:17 2010, 美东)
: N bidders bid on N merchandises. Each bidder provides a bidding price on
: every of the N merchandises, P(i,j). How to allocate the merchandises to
: each the bidder to maximize the revenue? (Of coz, each merchandise can be
: sold to one and only one bidder.)
: 感觉应该是很基本的问题,可惜本人背景太弱,望不吝赐教,多谢!

1 (共1页)
进入Programming版参与讨论
相关主题
内存分配问题why do we still use dynamic allocation?
sort algorithm为什么用try catch不住exception?
a small question about c++ memory allocation关于内存泄漏
sizeof(string)alloc这个函数究竟做些啥活呢?
问一个简单问题的算法 (转载)array allocation in c
Algorithm Question: Given an array and a sum value return"brk()" 和 mmap() 有什么区别? (转载)
今天电面又被老印黑了。。。。 (转载)C++一个string的小问题
effective C++里的memory pool 一问:菜鸟请教C问题
相关话题的讨论汇总
话题: bidder话题: each话题: google话题: algorithm