ShreevatsaR
|
Registered User
|
|
|
Nov 26 |
accepted | What is the meaning of O( polylog(n) )? In particular, how is polylog(n) defined? |
|
Nov 26 |
revised |
What is the meaning of O( polylog(n) )? In particular, how is polylog(n) defined? more links |
|
Nov 26 |
answered | What is the meaning of O( polylog(n) )? In particular, how is polylog(n) defined? |
|
Nov 23 |
comment |
When should you start optimising code? @ldigas: Knuth said that, not Hoare! Read the Wikipedia article carefully, or see shreevatsa.wordpress.com/2008/05/… |
|
Nov 22 |
comment |
Code-Golf: What is the shortest program that compiles and crashes? The first question I've seen where Perl had the most readable solution. |
|
Nov 19 |
comment |
Sorting a binary 2D matrix? Or a simpler 3x3 example: [1 0 0], [0 1 1], [0 0 1]. |
|
Nov 19 |
comment |
Sorting a binary 2D matrix? Here's an input where it doesn't work: consider [1 0 0 0], [0 1 1 1], [0 0 1 1], [0 0 0 1] (which is already upper-triangular). Using your algorithm on it arrives at [1 0 1 1], [0 0 1 1], [0 0 0 1], [0 1 0 0], which is not. (And if the initial form is not given and you start with the latter matrix, then the algorithm does not change anything: it does not find the upper-triangular form.) |
|
Nov 19 |
comment |
Tips for Project Euler Problem #78 Are you sure about (2.)? This would be a reasonable (or even the best) approach if (2) were true, but AFAIK there is no multiplicative identity for p(n): en.wikipedia.org/wiki/… |
|
Nov 19 |
comment |
Sorting a binary 2D matrix? Sorry if that came off as rude: I have enormous, if grudging, respect for general-purpose solutions which work well-enough often-enough in practice; it's just that using a general-purpose hammer always feels against the spirit of the challenge. :-) Of course, the careful analysis might turn up only an NP-completeness proof, which would be utterly useless, but still — since I don't actually need to solve the problem in real life — more interesting. ;-) Anyway, simulated annealing is among the best of the general-purpose solutions, so +1. I just wish the first line didn't say "without trouble". |
|
Nov 19 |
comment |
Sorting a binary 2D matrix? But why immediately reach for an approximate algorithm with no guarantees, without first trying to either find an optimal algorithm or establish that the problem is hard? (One possible answer is that you don't want to spend much time on it, but…) :-) |
|
Nov 19 |
comment |
Sorting a binary 2D matrix? Questions: (1) Note that there is nothing you can do with a matrix of all 1s: are you fine with that? (2) Once there are no zeros below the diagonal, do you care about where the 1s are above the diagonal? (3) Is minimizing the number of 1s below the diagonal a good enough criterion? How about simply minimizing the number of rows that have (at least) a 1 below the diagonal? |
|
Nov 19 |
comment |
Sorting a binary 2D matrix? Yes, but these "general purpose algorithms" also usually suck wrt finding actually optimal solutions — they can often take a long time to converge, or get stuck in local minima. Can you prove anything about the results obtained by simulated annealing for this specific problem? |
|
Nov 18 |
comment |
Find two numbers in a binary search tree that add up to a third number Is this homework? (It's usually good to mention.) |
|
Nov 17 |
revised |
How to implement copy protection of content in an open source application? add words to title, to prevent knee-jerk close votes |
|
Nov 17 |
accepted | less-restrictive GPL-like license |
|
Nov 17 |
comment |
less-restrictive GPL-like license If you mean GPLv2 and GPLv3, then using GPLv2 with the standard "or, at your option, any later version" clause will take care of both. |
|
Nov 17 |
answered | less-restrictive GPL-like license |
|
Nov 16 |
comment |
How do I find the smallest positive integer congruent to i modulo m? Another: stackoverflow.com/questions/989943 |
|
Nov 16 |
comment |
How do I find the smallest positive integer congruent to i modulo m? At least one dupe: stackoverflow.com/questions/1082917 |
|
Nov 13 |
awarded | ● Enlightened |
|
Nov 13 |
awarded | ● Nice Answer |
|
Nov 13 |
comment |
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values Thanks. In my defence, I wasn't trying to be rude; I find the 2^(n^2) staggeringly large (it is impossible even for n=7!) so the "ouch" was a literal physiological reaction on reading this. :-) Just for future reference, what was missing from the first explanation? Was it the word "compare"? |
|
Nov 13 |
comment |
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values Of course you compare them! best=0; for each subset X of the rows: for each subset Y of the columns: best = max(best, sum of elements in rows X and columns Y). See the answer of cletus, for example. (From your other comments, it seems that you're trying to discuss the best-case running time of your algorithm; I refuse to be drawn into such absurdity. :p Either worst-case running time, or average-case running with an analysis of the input distribution, are worth discussing.) |
|
Nov 13 |
awarded | ● Nice Answer |
|
Nov 13 |
comment |
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values I don't understand what the confusion is. By generating all subsets of rows and all subsets of columns, you are looking at all valid subsets of entries, so nothing is missed. Your approach (after your clarification) also generates all valid subsets, but it does incredibly more work: it's a question of 2^(2n) v/s 2^(n^2). |
|
Nov 13 |
comment |
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values Take every subset X of the rows (there are 2^6=64 of them), and every subset Y of the columns (there are 2^6=64 of them), and look at the sum of entries (x,y) for x in X, y in Y. That's the more direct approach too, don't you think? |
|
Nov 12 |
comment |
Is the board game “Go” NP complete? You might want to mention that both results are for generalized versions of the games. The games with constant-sized boards can, trivially, both be solved in constant time. (Though the constant is too large for us to deal with right now, and possibly ever.) |
|
Nov 12 |
comment |
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values Ouch. Not only is this awful efficiency-wise, it's not even correct. (The rows and columns don't have to form contiguous rectangles.) Consider just the efficiency: this goes through 2^(n^2) subsets (without the "improvement" part), which is very quickly much larger than 2^(2n). Even for 6x6 matrices, can you imagine going through all 2^36 subsets of the 36 entries? Compare the 64x64=4096 (subsets of rows)x(subsets of columns). |
|
Nov 12 |
accepted | Proving with floor and ceiling functions formally for computer scientists |
|
Nov 12 |
comment |
Is it correct to ask to solve an NP-complete problem on a job interview? Er, so according to you, the interviewer should not ask questions that he knows the answers to and the interviewee doesn't? (NP-hard problems do sometimes/often turn up in practice in non-obvious forms.) |
|
Nov 12 |
comment |
Is it correct to ask to solve an NP-complete problem on a job interview? "provide a sketch of reduction to a known NP-hard problem" — note that you need a reduction from an NP-hard problem, not to an NP-hard problem (which is usually all too easy). |
|
Nov 12 |
comment |
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values @Pavel: I made some gratuitous changes, but feel free to revert whatever you feel you preferred earlier. :-) |
|
Nov 12 |
revised |
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values mention brute-force |
|
Nov 12 |
comment |
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values @280Z28: That's not relevant: it's the decision version of the clique problem ("is there a clique of size of size ≥k?") that is NP-complete, so the equivalent here would be "does there exist a way of removing some rows and columns to get a sum ≥ s?" And given a certificate (which rows and columns to remove), this is trivial to check in polynomial time, so the problem is indeed in NP (and NP-complete). |
|
Nov 12 |
comment |
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values Great work. I was about to post a proof, but you fixed yours in the meantime. :-) The reduction (or at least the wording) could be greatly simplified... is it ok if I edit your answer, or post another version of the same proof? (If not, a couple of suggestions: you can just put a[i][j]=0 for (i,j) not an edge, and a[i][i]=n*n. Also, the word is "struck" not "stricken".) |
|
Nov 12 |
comment |
Proving with floor and ceiling functions formally for computer scientists And in general, the two are not equal: e.g. take x=100.9 and y=100.9, you have ⎣x⎦⎣y⎦=100×100=10000, while ⎣xy⎦=⎣10180.81⎦=10180, much larger. :-) If all this is mystifying, read the Concrete Mathematics book — it's very clear and not at all horrible! |
|
Nov 12 |
comment |
Proving with floor and ceiling functions formally for computer scientists What you said is not a proof: to prove that something is true for all x and y, giving an example won't do. But you can prove it as follows: ⎣x⎦≤x, ⎣y⎦≤y, so ⎣x⎦⎣y⎦≤xy. Now, as ⎣x⎦⎣y⎦ is some integer less than or equal to xy, and ⎣xy⎦ is the largest integer less than or equal to xy, we have ⎣x⎦⎣y⎦≤⎣xy⎦. More generally, the "methodology" would be to write x=⎣x⎦+{x}, y=⎣y⎦+{y}, where {x} and {y} are the fractional parts, and work it out by hand: xy=(⎣x⎦+{x})(⎣y⎦+{y})=(⎣x⎦⎣y⎦ + ⎣x⎦{y} + {x}⎣y⎦ + {x}{y}), so its floor is ⎣xy⎦ = ⎣x⎦⎣y⎦ + ⎣(⎣x⎦{y} + {x}⎣y⎦ + {x}{y})⎦ ≥ ⎣x⎦⎣y⎦. |
|
Nov 12 |
comment |
Examples of functional programs ‘writing themselves’ via type analysis Great question. I've found this too, but can't recall examples right now. While we wait for an answer, here's another "wow" factor, from a talk by Mark Jason Dominus (of "Higher-Order Perl" etc. fame) on static typing. In a manner of speaking, the Haskell compiler detects an infinite loop at compile time — start here: perl.plover.com/classes/OOPSLA/… |
|
Nov 12 |
answered | Proving with floor and ceiling functions formally for computer scientists |
|
Nov 9 |
comment |
Are there faster algorithms than Dijkstra? Firstly, results about what is faster "in practice" are not relevant to what has asymptotically better growth, because graphs encountered in practice are finite and usually small. Further,faster in 1976 does not necessarily translate to faster in 2009. For one thing, the "in-practice" graphs are larger today — to take an exaggerated example, 200x^2 is four times faster than n^3 for n=50, but one-fifth as slow for n=1000. |
|
Nov 7 |
comment |
Tips for picking a computer science masters program Well, university is not vocational school. As you said, computer science ≠ programming, so you shouldn't expect them to teach only what would be most useful to a working programmer. |
|
Nov 3 |
comment |
Combined area of overlapping circles This will work, but Monte-Carlo methods like this one, based simply on uniform sampling, generally don't have the best convergence rates. |
|
Oct 31 |
accepted | Finding the highest 2 numbers- computer science |
|
Oct 30 |
revised |
Finding the highest 2 numbers- computer science mention actual number |
|
Oct 30 |
answered | Finding the highest 2 numbers- computer science |
|
Oct 29 |
awarded | ● Guru |
|
Oct 28 |
accepted | How to find largest triangle in convex hull aside from brute force search |
|
Oct 25 |
answered | How to find largest triangle in convex hull aside from brute force search |
|
Oct 21 |
awarded | ● Disciplined |
|
Oct 20 |
awarded | ● Good Answer |
