由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 求助一道FB的高频题non-overlap jobs
相关主题
这道facebook的题怎么解请教一题,关于interval
一个Google面试题Amazon interview question.(3)
Leetcode 689居然是fb的高频题?01 Knapsack brute force code
internship overlap period (转载)DP解法的题目是不是肯定是多项式的?
问个算法题, 关于区间 overlap的Amazon面筋
求overlap的rectagalesupdae: 明天GOOG电面, 求祝福 interview 问题
Apple iCloud 电面昨天面试的题目
longest overlap suffix一道 Amazon DP题
相关话题的讨论汇总
话题: cost话题: job话题: time话题: jobs话题: end
进入JobHunting版参与讨论
1 (共1页)
y*******8
发帖数: 112
1
先谢谢各位了!
题目是:Given a set of n jobs with [start time, end time, cost] find a
subset so that no 2 jobs overlap and the cost is maximum.
brute force 肯定是不行的了。我知道一个O(N^2)的解答,请问有更好的答案吗?谢谢
了!
d****n
发帖数: 233
2
DP吧, 先sort the jobs by end time, if the end time is the same, then by
start time.
Cost[i] = |- Cost[i-1] + JobCost[i] if job i doesn't overalap with previous
jobs
|- Max(Cost[i-1], Cost[j]+ JobCost[i] where j is the closest job
which is not overlapping with job i


【在 y*******8 的大作中提到】
: 先谢谢各位了!
: 题目是:Given a set of n jobs with [start time, end time, cost] find a
: subset so that no 2 jobs overlap and the cost is maximum.
: brute force 肯定是不行的了。我知道一个O(N^2)的解答,请问有更好的答案吗?谢谢
: 了!

c******n
发帖数: 100
y*******8
发帖数: 112
4
谢谢二位了!
我也看到了这个post~只是没有看懂。。。。能解释一下下么?

【在 c******n 的大作中提到】
: http://cs.stackexchange.com/questions/11265/find-non-overlappin
y*******8
发帖数: 112
5
恕我愚钝,请问为什么是按照end time sort呢?

previous
job

【在 d****n 的大作中提到】
: DP吧, 先sort the jobs by end time, if the end time is the same, then by
: start time.
: Cost[i] = |- Cost[i-1] + JobCost[i] if job i doesn't overalap with previous
: jobs
: |- Max(Cost[i-1], Cost[j]+ JobCost[i] where j is the closest job
: which is not overlapping with job i
:

j**********g
发帖数: 77
6
Mark
d****n
发帖数: 233
7
按endtime的话, 当你处理ith job时, 可以通过binarysearch 很快找到最接近的job
which
is not overlapping with ith job。 因为前面i-1个的endtime是递增的。

【在 y*******8 的大作中提到】
: 恕我愚钝,请问为什么是按照end time sort呢?
:
: previous
: job

y*******8
发帖数: 112
8
学习了,谢谢!!!

job

【在 d****n 的大作中提到】
: 按endtime的话, 当你处理ith job时, 可以通过binarysearch 很快找到最接近的job
: which
: is not overlapping with ith job。 因为前面i-1个的endtime是递增的。

h**********c
发帖数: 4120
9
这个题如果time granualarity 比较coarse的话
比如
[3,5] -> [3,4,5]
[1,7]-> [1,2,3,4,5,6,7]
然后进hash map
有overlap就是weighted graph 的bfs
opinion
y*******8
发帖数: 112
10
先谢谢各位了!
题目是:Given a set of n jobs with [start time, end time, cost] find a
subset so that no 2 jobs overlap and the cost is maximum.
brute force 肯定是不行的了。我知道一个O(N^2)的解答,请问有更好的答案吗?谢谢
了!
相关主题
求overlap的rectagales请教一题,关于interval
Apple iCloud 电面Amazon interview question.(3)
longest overlap suffix01 Knapsack brute force code
进入JobHunting版参与讨论
d****n
发帖数: 233
11
DP吧, 先sort the jobs by end time, if the end time is the same, then by
start time.
Cost[i] = |- Cost[i-1] + JobCost[i] if job i doesn't overalap with previous
jobs
|- Max(Cost[i-1], Cost[j]+ JobCost[i] where j is the closest job
which is not overlapping with job i


【在 y*******8 的大作中提到】
: 先谢谢各位了!
: 题目是:Given a set of n jobs with [start time, end time, cost] find a
: subset so that no 2 jobs overlap and the cost is maximum.
: brute force 肯定是不行的了。我知道一个O(N^2)的解答,请问有更好的答案吗?谢谢
: 了!

c******n
发帖数: 100
y*******8
发帖数: 112
13
谢谢二位了!
我也看到了这个post~只是没有看懂。。。。能解释一下下么?

【在 c******n 的大作中提到】
: http://cs.stackexchange.com/questions/11265/find-non-overlappin
y*******8
发帖数: 112
14
恕我愚钝,请问为什么是按照end time sort呢?

previous
job

【在 d****n 的大作中提到】
: DP吧, 先sort the jobs by end time, if the end time is the same, then by
: start time.
: Cost[i] = |- Cost[i-1] + JobCost[i] if job i doesn't overalap with previous
: jobs
: |- Max(Cost[i-1], Cost[j]+ JobCost[i] where j is the closest job
: which is not overlapping with job i
:

j**********g
发帖数: 77
15
Mark
d****n
发帖数: 233
16
按endtime的话, 当你处理ith job时, 可以通过binarysearch 很快找到最接近的job
which
is not overlapping with ith job。 因为前面i-1个的endtime是递增的。

【在 y*******8 的大作中提到】
: 恕我愚钝,请问为什么是按照end time sort呢?
:
: previous
: job

y*******8
发帖数: 112
17
学习了,谢谢!!!

job

【在 d****n 的大作中提到】
: 按endtime的话, 当你处理ith job时, 可以通过binarysearch 很快找到最接近的job
: which
: is not overlapping with ith job。 因为前面i-1个的endtime是递增的。

h**********c
发帖数: 4120
18
这个题如果time granualarity 比较coarse的话
比如
[3,5] -> [3,4,5]
[1,7]-> [1,2,3,4,5,6,7]
然后进hash map
有overlap就是weighted graph 的bfs
opinion
Q**w
发帖数: 41
19

job
请教下如果end time有重复值,同一个end time对应不同的cost。。还能二分不?

【在 d****n 的大作中提到】
: 按endtime的话, 当你处理ith job时, 可以通过binarysearch 很快找到最接近的job
: which
: is not overlapping with ith job。 因为前面i-1个的endtime是递增的。

m*********t
发帖数: 527
20
仔细看了一下文献,这个题目出出来挺坑人的。。。。
http://en.wikipedia.org/wiki/Interval_scheduling
算是 maximum weight independent set 的特殊情形,而且刚刚好有 polynomial time
的解法。。。我觉得没有相关 background 能想出来解法都不错了。。。。
1 (共1页)
进入JobHunting版参与讨论
相关主题
一道 Amazon DP题问个算法题, 关于区间 overlap的
昨晚的Google Intern Interview求overlap的rectagales
CS PHD不能去研发部门还能干啥?Apple iCloud 电面
I-20结束日期之后还能继续学校工作吗?longest overlap suffix
这道facebook的题怎么解请教一题,关于interval
一个Google面试题Amazon interview question.(3)
Leetcode 689居然是fb的高频题?01 Knapsack brute force code
internship overlap period (转载)DP解法的题目是不是肯定是多项式的?
相关话题的讨论汇总
话题: cost话题: job话题: time话题: jobs话题: end