由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 一个概率题..
相关主题
面试题目求教rotate matrix扩展的解法
Interview question from Yahoo小结可以应用二分查找的面试题
问大家关于编程的经验leetcode里面的rotate array的[1,2], 3是什么意思?
Search in a sorted, rotated listiPad 12.9 pro screen rotation
amazon 电面题Blind Passenger Problem (Brainteaser)
MS Onsite面经An interview question about probability. (转载)
问一道题求解一道算法题
Rotating an array in placeFresh CS PhD, MS 面经
相关话题的讨论汇总
话题: seatings话题: consider话题: rotated话题: circular话题: professors
进入JobHunting版参与讨论
1 (共1页)
w*******s
发帖数: 96
1
In how many ways can n professors sit around a circular conference table?
Consider two seatings to be same if one can be rotated to form the other?
s****a
发帖数: 528
2
(n-1)!
W*********y
发帖数: 481
3
(n-1)!
全排列里每一次有效sittings 都重复了n次。除掉n就是答案



【在 w*******s 的大作中提到】
: In how many ways can n professors sit around a circular conference table?
: Consider two seatings to be same if one can be rotated to form the other?

d*********t
发帖数: 33
4
嗯,或者用递归,如果(n-1)个人有a(n-1)种坐法,那第n个人可以插入到(n-1)个空档里
所以 a(n)= (n-1)a(n-1)...

【在 W*********y 的大作中提到】
: (n-1)!
: 全排列里每一次有效sittings 都重复了n次。除掉n就是答案
:
:

P**l
发帖数: 3722
5
指定一个人,无论怎么排都以他算开头,把圆桌上的人拉出来按顺时针站排
其实就是剩下n-1个人的全排列
w*******s
发帖数: 96
6
谢谢!还找到一个详细的解释:
http://mindyourdecisions.com/blog/2010/05/24/seating-strategy-h
k****n
发帖数: 369
7
这不是概率题,是组合数学
线排列是n!种,对应圆排列应该是n!/n



【在 w*******s 的大作中提到】
: In how many ways can n professors sit around a circular conference table?
: Consider two seatings to be same if one can be rotated to form the other?

n******g
发帖数: 17225
8
高中数学题
b*****c
发帖数: 1103
9
(n-1)!
1 (共1页)
进入JobHunting版参与讨论
相关主题
Fresh CS PhD, MS 面经amazon 电面题
讨论个subarray sum的变种问题MS Onsite面经
面试问题问一道题
问一题Rotating an array in place
面试题目求教rotate matrix扩展的解法
Interview question from Yahoo小结可以应用二分查找的面试题
问大家关于编程的经验leetcode里面的rotate array的[1,2], 3是什么意思?
Search in a sorted, rotated listiPad 12.9 pro screen rotation
相关话题的讨论汇总
话题: seatings话题: consider话题: rotated话题: circular话题: professors