User Ying Xiao - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:16:31Z http://stackoverflow.com/feeds/user/30202 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/350005/algorithm-for-best-suiting-peoples-choices-from-a-definite-list-of-items-where-t/350122#350122 4 Answer by Ying Xiao for Algorithm for best suiting people's choices from a definite list of items where there is only one of each available? Ying Xiao 2008-12-08T16:46:51Z 2008-12-08T16:46:51Z <p>For each person, create two virtual people, a "giver" and a "receiver". Now match the set of givers against the set of receivers using the Gale Shapley Algorithm. Runs in O(n^2) time.</p> <p><a href="http://en.wikipedia.org/wiki/Stable_marriage_problem" rel="nofollow">http://en.wikipedia.org/wiki/Stable_marriage_problem</a></p> http://stackoverflow.com/questions/280457/how-can-i-calculate-a-fair-overall-game-score-based-on-a-variable-number-of-match/289204#289204 0 Answer by Ying Xiao for How can I calculate a fair overall game score based on a variable number of matches? Ying Xiao 2008-11-14T03:56:20Z 2008-11-14T03:56:20Z <p>Construct a graph, with each person represented by a vertex. Each edge in the graph represents a series of matches between two players. Now apply some type of page rank algorithm to give you a set of weights over the vertices. That should give you your ranking.</p> <p>Now the tricky part is picking the edge weights used in pagerank. For the directed edge (u,v) -- from vertex u to vertex v -- I would personally assign a weight equal to the number of points player u has won against player v.</p> <p>You can add vertices to your graph whenever, but remember that page rank favours older vertices (ie those that have played more games!). Anyway for a reference:</p> <p><a href="http://dbpubs.stanford.edu:8090/pub/1999-66" rel="nofollow">http://dbpubs.stanford.edu:8090/pub/1999-66</a></p> <p>An alternative idea is to use ELO ratings, and to try to bootstrap it by assigning everyone the same score to start with, and then propagate a score forwards. I can't say this is entirely satisfactory though.</p> http://stackoverflow.com/questions/288966/running-time-of-random-sort/289022#289022 1 Answer by Ying Xiao for Running Time of Random Sort Ying Xiao 2008-11-14T01:57:19Z 2008-11-14T01:57:19Z <p>The average case is indeed O( N N!):</p> <p>Observe that there are exactly N! permutations of N elements. The probability of picking the right one is exactly 1/N!. Hence, by the strong law of large numbers, the expected number of sorts is N!.</p> <p>Where does the other factor N come from? You have to check, at every step, what permutation you picked. That can be done linearly be comparing adjacent elements. Hence an extra factor N.</p> <p>Comments above have indicated that O(g(n)) notation is "worst case":</p> <p>1) That's not true. The definition of O(g(n)) is: f(n) is O(g(n)) if there exists some c,d such that f(n) &lt; c * g(n) + d for sufficiently large n. There's nothing about "worst case". It just so happens that g(n) is a bigger function than f(n), but the pure mathematical definition says nothing about "case".</p> <p>2) For randomized algorithms, it's pointless to do a "worst case" analysis anyway. You can come up with some execution that's going to be really bad.</p> <p>3) The really bad executions occur on a set of measure 0 (A probabilist would say that they "almost surely" don't happen). They're actually impossible to observe.</p> http://stackoverflow.com/questions/252408/attending-a-top-university-for-post-graduate-education-from-an-unknown-cs-program/255190#255190 0 Answer by Ying Xiao for Attending a top university for post-graduate education from an unknown CS programme Ying Xiao 2008-10-31T22:49:20Z 2008-10-31T22:49:20Z <p>Admissions at top graduate schools are about research, research and research. You need to convince them that you're capable of doing independent research. Your letters of recommendation count the most -- how positive they are and (unfortunately?) who's writing them. </p> <p>Things like class rank, grades, gres etc count for little. Show capacity for genuine, creative research, and that's the way to go.</p> http://stackoverflow.com/questions/252985/resource-on-computing-time-complexity-of-algorithms/255134#255134 1 Answer by Ying Xiao for Resource on computing time complexity of algorithms Ying Xiao 2008-10-31T22:28:02Z 2008-10-31T22:28:02Z <p>Guys, you're all recommending true complexity theory books -- Arora and Barak contains all sorts of things like PCP, Interactive Proofs, Quantum Computing and topics on Expander graphs -- things that most programmers/software developers have never heard of or will ever use. Papdimitriou is in the same category. Knuth is freaking impossible to read (and I was a CS/Math major) and gives zero intuition on how things work.</p> <p>If you want a simple way to compute runtimes, and to get the flavour of the analysis, try the first chapter or so of Kleinberg and Tardos "Design and Analysis of Algorithms", that holds your hand through the fundamentals, and then you can work on much harder problems.</p> http://stackoverflow.com/questions/251781/how-to-find-the-kth-largest-element-in-an-unsorted-array-of-length-n-in-on/255128#255128 2 Answer by Ying Xiao for How to find the kth largest element in an unsorted array of length n in O(n)? Ying Xiao 2008-10-31T22:23:11Z 2008-10-31T22:23:11Z <p>If you want a true O(n) algorithm, as opposed to O(kn) or something like that, then you should use quickselect (it's basically quicksort where you throw out the partition that you're not interested in). My prof has a great writeup, with the runtime analysis:</p> <p><a href="http://pine.cs.yale.edu/pinewiki/QuickSelect" rel="nofollow">http://pine.cs.yale.edu/pinewiki/QuickSelect</a></p> http://stackoverflow.com/questions/231592/knowing-the-plaintext-how-to-discover-the-encryption-scheme-used/234383#234383 0 Answer by Ying Xiao for Knowing the plaintext, how to discover the encryption scheme used? Ying Xiao 2008-10-24T16:58:46Z 2008-10-24T16:58:46Z <p>I think it's a misconception that XOR is an easily decryptable scheme. The theoretically strongest form of encryption is a one-time pad: simply a string of predetermined bits which you xor your plaintext with...</p> <p>Finite XORs, on the other hand...</p> http://stackoverflow.com/questions/141779/solving-the-np-complete-problem-in-xkcd/228522#228522 3 Answer by Ying Xiao for Solving the NP-complete problem in XKCD Ying Xiao 2008-10-23T04:18:54Z 2008-10-23T05:31:06Z <p>Even though knapsack is NP Complete, it is a very special problem: the usual dynamic program for it is in fact excellent (<a href="http://en.wikipedia.org/wiki/Knapsack_problem" rel="nofollow">http://en.wikipedia.org/wiki/Knapsack_problem</a>)</p> <p>And if you do the correct analysis, it turns out that it is O(nW), n being the # of items, and W being the target number. The problem is when you have to DP over a large W, that's when we get the NP behaviour. But for the most part, knapsack is reasonably well behaved and you can solve really large instances of it with no problems. As far as NP complete problems go, knapsack is one of the easiest.</p> http://stackoverflow.com/questions/13222/how-many-people-actually-read-the-art-of-computer-programming-books/228587#228587 1 Answer by Ying Xiao for How many people actually read "The Art Of Computer Programming" books? Ying Xiao 2008-10-23T04:52:11Z 2008-10-23T04:52:11Z <p>Yes. I have read both volumes I and III. Volume II, with its focus on random number generation was too much, and I didn't make it through. The MIX was alright, though I had to spend a bit of time in volume I making sure I understood all of it.</p> <p>It was kind of underwhelming actually:</p> <ul> <li><p>Book 1 had some very basic data structures stuff. This stuff can be found in any reasonably modern book.</p></li> <li><p>As a CS Theory student (algorithms &amp; complexity), book 3 was mostly pointless and dealt with two very limited and narrow algorithmic problems which aren't terribly interesting from an algorithmic perspective. However, I did learn how to write a correct binary search -- it's harder than it looks with all the off by 1 errors!</p></li> </ul> <p>My general opinion is that these are monolithic works of historical importance, but practically (or even theoretically!), your time could be better spent reading other things.</p> <p>On the other hand, I have great respect for Knuth's other math/CS Theory works, and I've found those really enlightening. I'm looking forward to Volume 4B (Graphs and Networks) of TAOCP.</p> http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem/228550#228550 2 Answer by Ying Xiao for What is an NP-complete problem? Ying Xiao 2008-10-23T04:30:40Z 2008-10-23T04:30:40Z <p>The definitions for NP complete problems above is correct, but I thought I might wax lyrical about their philosophical importance as nobody has addressed that issue yet.</p> <p>Almost all complex problems you'll come up against will be NP Complete. There's something very fundamental about this class, and which just seems to be computationally different from easily solvable problems. They sort of have their own flavour, and it's not so hard to recognise them. This basically means that any moderately complex algorithm is impossible for you to solve exactly -- scheduling, optimising, packing, covering etc.</p> <p>But not all is lost if a problem you'll encounter is NP Complete. There is a vast and very technical field where people study approximation algorithms, which will give you guarantees for being close to the solution of an NP complete problem. Some of these are incredibly strong guarantees -- for example, for 3sat, you can get a 7/8 guarantee through a really obvious algorithm. Even better, in reality, there are some very strong heuristics, which excel at giving great answers (but no guarantees!) for these problems.</p> <p>Note that two very famous problems -- graph isomorphism and factoring -- are not known to be P or NP. </p> http://stackoverflow.com/questions/223545/probability-of-selecting-an-element-from-a-set/223780#223780 2 Answer by Ying Xiao for Probability of selecting an element from a set Ying Xiao 2008-10-21T22:30:54Z 2008-10-21T22:30:54Z <p>With repetitions, your distribution will be binomial. So let X be the number of times you select some fixed object, with M total selections</p> <p>P{ X = x } = ( M choose x ) * (1/N)^x * (N-1/N)^(M-x)</p> <p>You may find this difficult to compute for large N. It turns out that for sufficiently large N, this actually converges to a normal distribution with probability 1 (Central Limit theorem).</p> <p>In case P{X=x} will be given by a normal distribution. The mean will be M/N and the variance will be M * (1/N) * ( N-1) / N.</p> http://stackoverflow.com/questions/222413/find-the-shortest-path-in-a-graph-which-visits-certain-nodes/223734#223734 0 Answer by Ying Xiao for Find the shortest path in a graph which visits certain nodes. Ying Xiao 2008-10-21T22:16:40Z 2008-10-21T22:16:40Z <p>Andrew Top has the right idea:</p> <p>1) Djikstra's Algorithm 2) Some TSP heuristic.</p> <p>I recommend the Lin-Kernighan heuristic: it's one of the best known for any NP Complete problem. The only other thing to remember is that after you expanded out the graph again after step 2, you may have loops in your expanded path, so you should go around short-circuiting those (look at the degree of vertices along your path).</p> <p>I'm actually not sure how good this solution will be relative to the optimum. There are probably some pathological cases to do with short circuiting. After all, this problem looks a LOT like Steiner Tree: <a href="http://en.wikipedia.org/wiki/Steiner_tree" rel="nofollow">http://en.wikipedia.org/wiki/Steiner_tree</a> and you definitely can't approximate Steiner Tree by just contracting your graph and running Kruskal's for example.</p> http://stackoverflow.com/questions/219226/how-do-i-use-master-theorem-to-describe-recursion/219281#219281 4 Answer by Ying Xiao for How do I use Master theorem to describe recursion? Ying Xiao 2008-10-20T17:43:43Z 2008-10-20T17:43:43Z <p>A few years ago, Mohamad Akra and Louay Bazzi proved a result that generalizes the Master method -- it's almost always better. You really shouldn't be using the Master Theorem anymore...</p> <p>See, for example, this writeup: <a href="http://courses.csail.mit.edu/6.046/spring04/handouts/akrabazzi.pdf" rel="nofollow">http://courses.csail.mit.edu/6.046/spring04/handouts/akrabazzi.pdf</a></p> <p>Basically, get your recurrence to look like equation 1 in the paper, pick off the coefficients, and integrate the expression in Theorem 1.</p> http://stackoverflow.com/questions/529457/performance-of-java-matrix-math-libraries Comment by Ying Xiao on Performance of Java matrix math libraries? Ying Xiao 2009-02-09T19:56:44Z 2009-02-09T19:56:44Z Why do you need inverses? For almost all applications, you don't need the actual inverse. Computing the inverse is a bad idea because of stability issues. http://stackoverflow.com/questions/398299/looping-in-a-spiral Comment by Ying Xiao on Looping in a spiral Ying Xiao 2008-12-30T20:46:00Z 2008-12-30T20:46:00Z Why would you want to do this? Iterating across rows/columns has WAY better cache behaviour...locality of data! http://stackoverflow.com/questions/350005/algorithm-for-best-suiting-peoples-choices-from-a-definite-list-of-items-where-t/350322#350322 Comment by Ying Xiao on Algorithm for best suiting people's choices from a definite list of items where there is only one of each available? Ying Xiao 2008-12-08T18:37:50Z 2008-12-08T18:37:50Z Gale Shapley provides a matching that is pairwise Pareto (locally) optimal. The maximum weight matching scheme implicitly assumes that preferences are additive...this is a very strong (unfounded) assumption. I agree with your comment on male optimal/female pessimal though... http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem/210850#210850 Comment by Ying Xiao on What is an NP-complete problem? Ying Xiao 2008-11-21T01:36:37Z 2008-11-21T01:36:37Z The O() notation is a general mathematical notation used everywhere: approximation algorithms are indeed given to O() accuracy -- look up any approximation algorithm paper on arxiv.org http://stackoverflow.com/questions/302406/algorithm-to-determine-the-usual-cash-payment-amounts-for-a-given-price/303521#303521 Comment by Ying Xiao on Algorithm to determine the "usual" cash payment amounts for a given price Ying Xiao 2008-11-19T22:18:19Z 2008-11-19T22:18:19Z Cashier's problem: use least number of coins. This problem: how much change is left under some probability assumptions over coins. They are mostly unrelated...somebody up voted this?!? http://stackoverflow.com/questions/302376/how-to-relearn-programming-the-right-way/302395#302395 Comment by Ying Xiao on How to relearn programming the right way Ying Xiao 2008-11-19T16:13:22Z 2008-11-19T16:13:22Z Please stop offering TAOCP as a panacea for all ills. It has exactly zero to do with coding. Please read anything you recommend!