Redian新闻
>
dell怎么还没有便宜的 xps台式机卖啊
avatar
dell怎么还没有便宜的 xps台式机卖啊# Hardware - 计算机硬件
s*x
1
大家多多贡献吧。这里那里有好多,还是集中一下比较方便。
先从偶知道的说吧。主要集中在 algorithms and puzzles.
Q1. how to verify a binary tree is a binary search tree?
A. the trick is to have a max and min value node for the function.
Q2.25 horses problem. 25 horses, 1 track, each race can race 5 horses only,
no timer, find the top 3 horses running the fastest with min races.
A: skip as this is well known.
Q3. all the numbers in an array occur twice except one only occur once, find
the one that occurs once.
A: simply xor all the numbers.
Q4: how to check if a number is power of 2?
A: x & (x-1)
Q5: N*M 2D number array, all rows are sorted from left to right, all columns
are sorted from top to bottom, to find a number in the array.
A: start from top right or bottom left corner, O(N+M) complexity.
Q6: prisoner question. each prisoner will get sent to a room which has a switch (On/off state only). how the prisoners can tell if they all have entered the room at least once.
A: assign one person to turn the switch from on to off and count, all the other people turn the switch from off to on if they are the first time to enter the room.
Q7:another prisoner question. prison to give 2 baskets, 50 black balls and 50 white balls, he will be asked to pick up one ball from a basket, if he gets a blackball, he is free, other wise he will be killed, how to arrange the balls?
A: 1 black ball in one basket, 49 black balls and 50 white balls in another basket.
Q8: a box has lots of Black balls and white balls, pick up any 2 balls each time, if they the same color, put one black ball back, otherwise, put one white back. how can you decide the color of the last ball?
A: based on the number of white balls is even or not. even, black, odd, white.
Q9: famous 9 ball weighing.
A: skip.
Q10: 10 baskets of balls, all the balls are the same weight except balls in one basket, you have a scale to check the actual weight, find the special basket with the minimum times of weighing.
A: ???
Q11: reverse words in a string. "mitbbs job hunting" => "hunting job mitbbs".
A: reverse the whole string first and then reverse each word.
Q12: given a list of numbers, find a pair whose sum equal to some number.
A: sort, compare the pair on the two ends, equal done. larger than the given number, move the left pointer, smaller move the right pointer, continue.
Q13: switch or not. 3 boxes, only has the treasure. you pick one, and someone will tell you a box that is sure no treasure. switch or not? which case has the high chance to find the treasure?
A: switch.
Q14: fair coin tossing, tail and head same chance. let's keep tossing the coin, if we see HHT, mike wins, if we see THH, Ron wins, whose chance is higher?
A: HHT.
avatar
i*t
2
不是号称500能拿到 i7吗?
这个xps8700 系列能自己装 gtx760吗?
thx
avatar
i*d
3
xie xie !
avatar
V*3
4

每年都有一两回

【在 i******t 的大作中提到】
: 不是号称500能拿到 i7吗?
: 这个xps8700 系列能自己装 gtx760吗?
: thx

avatar
n*y
5
why Q14 is not "same chance"
avatar
i*t
6
我是想知道这个机器能换个啥样的显卡啊
avatar
n*y
7
Q10:
take one ball from each basket and mark them as 1 to 10.
then same as Q9
avatar
m*d
8
今天不是有吗,很难抢而已。配合那个dell GC就500以下了
Dell XPS 8700 Desktop (refurbished)
$729 - 25% w/ code DQ7LNC?1L560B4 = $547
Intel Core i7-4770 (3.4GHz)
12GB DDR3
500GB Hard Drive (7200 RPM)
16X DVDRW Drive
1GB AMD Radeon HD 7570 GDDR5
WiFi N
Bluetooth 4.0
Windows 8

【在 i******t 的大作中提到】
: 不是号称500能拿到 i7吗?
: 这个xps8700 系列能自己装 gtx760吗?
: thx

avatar
s*x
9
once you see HH, you sure will see another T because if it is H, you are
still see HH. it is a series of continue tossing.

【在 n********y 的大作中提到】
: why Q14 is not "same chance"
avatar
i*t
10
这个能换gtx580或者 760显卡吗?
thx

【在 m*****d 的大作中提到】
: 今天不是有吗,很难抢而已。配合那个dell GC就500以下了
: Dell XPS 8700 Desktop (refurbished)
: $729 - 25% w/ code DQ7LNC?1L560B4 = $547
: Intel Core i7-4770 (3.4GHz)
: 12GB DDR3
: 500GB Hard Drive (7200 RPM)
: 16X DVDRW Drive
: 1GB AMD Radeon HD 7570 GDDR5
: WiFi N
: Bluetooth 4.0

avatar
s*x
11
I updated the question to make it clear, the scale is not a balance scale,
it can tell the exact weight. so it is different than Q9.

【在 n********y 的大作中提到】
: Q10:
: take one ball from each basket and mark them as 1 to 10.
: then same as Q9

avatar
r*5
12
这个DEAL是搞笑的吧,7570还不一定有i7 4770集成的4600好。。。

【在 m*****d 的大作中提到】
: 今天不是有吗,很难抢而已。配合那个dell GC就500以下了
: Dell XPS 8700 Desktop (refurbished)
: $729 - 25% w/ code DQ7LNC?1L560B4 = $547
: Intel Core i7-4770 (3.4GHz)
: 12GB DDR3
: 500GB Hard Drive (7200 RPM)
: 16X DVDRW Drive
: 1GB AMD Radeon HD 7570 GDDR5
: WiFi N
: Bluetooth 4.0

avatar
g*u
13
Q14:
why the prob is not the same? since it is a fair coin, the H and T is
interchangable.
Q15:
I do not understand it. Why not directly using Xor OXFF(1111 1111), then
all the bits 1 will be 0, all the bits 0 will be 1.
Could you please elaborate your algo?
avatar
H*9
14
那是因为时候未到,还得等等
avatar
f*4
15
不同的那个桶里的球 重/轻多少已知吗?

scale,

【在 s**x 的大作中提到】
: I updated the question to make it clear, the scale is not a balance scale,
: it can tell the exact weight. so it is different than Q9.

avatar
a*1
16
如果要改装,就要换电源
一般OEM配的电源都比较搓
avatar
f*4
17
Q6描述不清楚 题目看不懂。。。
avatar
c*a
18
私有化了以后就几乎没有deal了吧。

【在 V**3 的大作中提到】
: 等
: 每年都有一两回

avatar
s*x
19
it does not matter I think.

【在 f*******4 的大作中提到】
: 不同的那个桶里的球 重/轻多少已知吗?
:
: scale,

avatar
f*r
20
光这个u就300刀了。其他的杂七杂八加起来,自己500多还是很难配下来。
7570比集成的略强点。如果想打游戏的,升级也容易,xps用的460w的psu上7870没问题。
另外有种配置用的是gt 640 d5版,这个就好多了。

【在 r*******5 的大作中提到】
: 这个DEAL是搞笑的吧,7570还不一定有i7 4770集成的4600好。。。
avatar
s*x
21
I updated to make it clearer.

【在 f*******4 的大作中提到】
: Q6描述不清楚 题目看不懂。。。
avatar
s*o
22
500多的3代i7+独显ebay上多了去了
avatar
c*n
23
q3 I see it all the time
bit I don't understand why XOR would work here
eg. 1 2 3 3
we look for 3. can u show me?
l

【在 s**x 的大作中提到】
: 大家多多贡献吧。这里那里有好多,还是集中一下比较方便。
: 先从偶知道的说吧。主要集中在 algorithms and puzzles.
: Q1. how to verify a binary tree is a binary search tree?
: A. the trick is to have a max and min value node for the function.
: Q2.25 horses problem. 25 horses, 1 track, each race can race 5 horses only,
: no timer, find the top 3 horses running the fastest with min races.
: A: skip as this is well known.
: Q3. all the numbers in an array occur twice except one only occur once, find
: the one that occurs once.
: A: simply xor all the numbers.

avatar
d*t
24
XPS 8xxx系列配这个显卡正常,需要自己换显卡就是了,还是好过4600的,不占用内存
这点就够了...

【在 r*******5 的大作中提到】
: 这个DEAL是搞笑的吧,7570还不一定有i7 4770集成的4600好。。。
avatar
s*x
25
it is 1, 1, 2, 3, 3 , 5, 5. finding 2.

【在 c******n 的大作中提到】
: q3 I see it all the time
: bit I don't understand why XOR would work here
: eg. 1 2 3 3
: we look for 3. can u show me?
: l

avatar
r*5
26
不占内存这点倒是,不过12G内存也不差这点了。
换显卡可能有点麻烦,这种品牌机给的功率余额不会太多,要做好功课先。我当年也是
这么干的,先买后找,找了半天才找到PSU能带的动的显卡。

【在 d**********t 的大作中提到】
: XPS 8xxx系列配这个显卡正常,需要自己换显卡就是了,还是好过4600的,不占用内存
: 这点就够了...

avatar
l*a
27
i buy it.

【在 s**x 的大作中提到】
: once you see HH, you sure will see another T because if it is H, you are
: still see HH. it is a series of continue tossing.

avatar
I*9
28

题。
刚刚买了个这个
gt 640 d5
i7 3770
2x4GB
1TB
原价719 * 0.75 - 75 + tax = 492
按道理到手之后要求退货还可以退一点钱

【在 f*******r 的大作中提到】
: 光这个u就300刀了。其他的杂七杂八加起来,自己500多还是很难配下来。
: 7570比集成的略强点。如果想打游戏的,升级也容易,xps用的460w的psu上7870没问题。
: 另外有种配置用的是gt 640 d5版,这个就好多了。

avatar
j*j
29
this is not right except for the case where HH happen to be the result of
the first two tossings.
For other cases, since it's continuous tossing, for every HH or HH...HH,
there must be a T before them. So we can see that THH will always win before
HHT can win.
Suppose the tossing doesn't have to start over after each win, then the chance
will be equal for THH and HHT if they play long enough.
If the tossing has to be started over after each win, HHT only wins
in the case where HH happens to come at the fist two tossing. So, HHT's chance is 25%.
THH's chance is 75%.

【在 s**x 的大作中提到】
: once you see HH, you sure will see another T because if it is H, you are
: still see HH. it is a series of continue tossing.

avatar
d*t
30
嗯,换显卡肯定折腾,不少人为了支持显卡还同时换了PSU呢,都是为了省钱嘛

【在 r*******5 的大作中提到】
: 不占内存这点倒是,不过12G内存也不差这点了。
: 换显卡可能有点麻烦,这种品牌机给的功率余额不会太多,要做好功课先。我当年也是
: 这么干的,先买后找,找了半天才找到PSU能带的动的显卡。

avatar
i*t
31
哪里买的?

【在 I****9 的大作中提到】
:
: 题。
: 刚刚买了个这个
: gt 640 d5
: i7 3770
: 2x4GB
: 1TB
: 原价719 * 0.75 - 75 + tax = 492
: 按道理到手之后要求退货还可以退一点钱

avatar
I*9
32

今天outlet的丢啊

【在 i******t 的大作中提到】
: 哪里买的?
avatar
i*t
33
你下手快啊 我看得时候 啥都没了

【在 I****9 的大作中提到】
:
: 今天outlet的丢啊

avatar
p*m
34
xps8700
i7 4770
16gb
2tb
NVIDIA GeForce GTX 645
搞了这个615
avatar
p*m
35
MSI Twin Frozr Radeon HD 7850 2GB GDDR5 PCI Express 3.0 Video Card + Voucher
for 2 Games $110 After $30 rebate + Free shipping 这个怎么样
还有搞两个128gb ssd跑raid0 再来个monitor 哦哦超标了
avatar
m*d
36
搞笑怎么样,没这个显卡一样有人要
而且7570虽然若,比那个4600还是强不少

【在 r*******5 的大作中提到】
: 这个DEAL是搞笑的吧,7570还不一定有i7 4770集成的4600好。。。
avatar
h*l
37
唉,啥都没抢上。。。
avatar
R*n
38
我搞了台类似的。不过是12Gb ram, NVIDIA GEfORCE GTX 650Ti。

【在 p*******m 的大作中提到】
: xps8700
: i7 4770
: 16gb
: 2tb
: NVIDIA GeForce GTX 645
: 搞了这个615

avatar
f*p
39
我觉得Dell的台式机的问题在于:1)死沉死沉的;2)噪音大
好处也有:机箱大,装东西容易;兼容性好,随便搞,基本上神马系统都行。
avatar
f*r
40
噪音还可以啊,不觉得大。

【在 f****p 的大作中提到】
: 我觉得Dell的台式机的问题在于:1)死沉死沉的;2)噪音大
: 好处也有:机箱大,装东西容易;兼容性好,随便搞,基本上神马系统都行。

avatar
I*9
41

我怎么觉得1是优点

【在 f****p 的大作中提到】
: 我觉得Dell的台式机的问题在于:1)死沉死沉的;2)噪音大
: 好处也有:机箱大,装东西容易;兼容性好,随便搞,基本上神马系统都行。

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。