| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 3 months |
| seen | Jun 4 at 9:43 | |
| stats | profile views | 32 |
|
Dec 10 |
accepted | How to calculate nCr modulo 1000000007 when n < 400000? |
|
Dec 10 |
asked | How to calculate nCr modulo 1000000007 when n < 400000? |
|
Oct 8 |
comment |
How to implement Dynamic Programming in the following recusrion? @Raymond Chen: Really nice inference. My solution got accepted :) |
|
Oct 7 |
accepted | How to implement Dynamic Programming in the following recusrion? |
|
Oct 7 |
comment |
How to implement Dynamic Programming in the following recusrion? I've tried it, and it keeps giving runtime error...:( |
|
Oct 7 |
comment |
How to implement Dynamic Programming in the following recusrion? That is timing out! |
|
Oct 7 |
asked | How to implement Dynamic Programming in the following recusrion? |
|
Oct 7 |
comment |
How to increase efficiency of matrix operation in C? is there any other possible way of doing the same |
|
Oct 7 |
comment |
How to increase efficiency of matrix operation in C? N's max value is 2000, hence the matrix a[2000][2000] is used. Suppose n = 3, then the game can be played in the following manner:(a1,a2,a3); (a1,a3,a2),(a3,a1,a2),(a3,a2,a1); where 1st and third term in every triplet represent, the possible coins A will pick. In this scenario, A's expected score will be (a1+a3)*0.5*0.5 + (a1+a2)*0.5*0.5 + (a3+a2)*0.5*0.5 + (a3+a1)*0.5*0.5...I have just tried to do the same calculation by using n*n matrix. 0.5*0.5 represent the overall probability: first coin is picked with probability of 0.5, second with 0.5 and third with 1 so total =0.5*0.5*1. |
|
Oct 6 |
comment |
How to increase efficiency of matrix operation in C? The problem statement is that I need to get the expected score of person A in a game played against B. The game is governed by the following rule: There is a line of coins with known denominations. A player tosses a different coin and if heads turns up, he/she chooses the coin at the beginning of the line and if tails turns up, he/she chooses the coin at the end of the line. If A plays first, what is the expected value of A's score. a1, a2, a3, ... ,aN are the values of coins' denominations. Probability of getting a heads or a tails is 0.5. |
|
Oct 6 |
revised |
How to increase efficiency of matrix operation in C? added 58 characters in body |
|
Oct 6 |
comment |
How to increase efficiency of matrix operation in C? one could easily see that the case corresponding to input n, is an extension of case corresponding to input n-1. The main problem is that I can't come up with a solution that makes use of this dependency (similar to DP in which we make use of previous values). |
|
Oct 6 |
comment |
How to increase efficiency of matrix operation in C? @Fabian: added the code. |
|
Oct 6 |
revised |
How to increase efficiency of matrix operation in C? Added Code |
|
Oct 6 |
asked | How to increase efficiency of matrix operation in C? |
|
Sep 29 |
accepted | Java: how to find the most probable string in a list of strings? |
|
Sep 29 |
asked | Java: how to find the most probable string in a list of strings? |
|
Sep 28 |
revised |
How to perform limit query in HQL when table size is not known? added 4 characters in body |
|
Sep 28 |
asked | How to perform limit query in HQL when table size is not known? |
|
Sep 23 |
asked | Exception in HQL limit query |