Search found 62 matches
- Sat Sep 20, 2008 6:14 am
- Forum: Volume 114 (11400-11499)
- Topic: 11481 - Arrange the Numbers
- Replies: 10
- Views: 5790
Re: 11481 - Arrange the Numbers
@ srrajesh, Use inclusion-exclusion principle. Can you explain a little more? Inclusion and exclusion on what? See the following links: http://answers.yahoo.com/question/index?qid=20080808100200AAXSD4I http://mathworld.wolfram.com/Derangement.html ("Nicholas Bernoulli also solved the problem us...
- Sat Feb 16, 2008 9:02 am
- Forum: Volume 104 (10400-10499)
- Topic: 10419 - Sum-up the Primes
- Replies: 51
- Views: 26524
- Fri Feb 15, 2008 9:12 pm
- Forum: Volume 111 (11100-11199)
- Topic: 11125 - Arrange Some Marbles
- Replies: 20
- Views: 17280
Re: got WA
i can't find any bug in my code. Can any body help me? if( dp[a1][a2][a3][a4][siz][fir][last][firsize] != -1 ) return dp[a1][a2][a3][a4][siz][fir][last][firsize]; ................ .... for( int i = 0;i < 4; i++ ) for( int j = 0;j < 4; j++ ) for( int k = 0;k < 4; k++ ) for( int z = 0; z < 4; z++ ) i...
- Fri Feb 08, 2008 2:11 pm
- Forum: Volume 2 (200-299)
- Topic: 270 - Lining Up
- Replies: 48
- Views: 23656
- Fri Feb 08, 2008 12:20 pm
- Forum: Volume 2 (200-299)
- Topic: 270 - Lining Up
- Replies: 48
- Views: 23656
Nothing changed helloneo.
Still wrong answer.
I modified into this:
Still wrong answer.
I modified into this:
Code: Select all
if(ax>0.000001) tem=atan(ay/ax);
else tem=atan(0.0);
- Thu Feb 07, 2008 5:33 pm
- Forum: Volume 2 (200-299)
- Topic: 270 - Lining Up
- Replies: 48
- Views: 23656
Code: Select all
cut
- Sun Jan 20, 2008 8:46 am
- Forum: Volume 113 (11300-11399)
- Topic: 11396 - Claw Decomposition
- Replies: 12
- Views: 6847
Output:
Code: Select all
YES
YES
- Sat Jan 12, 2008 5:19 pm
- Forum: Volume 113 (11300-11399)
- Topic: 11386 - Triples
- Replies: 23
- Views: 10790
11386 - Triples
Code: Select all
cut
- Thu Jan 10, 2008 5:46 pm
- Forum: Volume 113 (11300-11399)
- Topic: 11324 - The Largest Clique
- Replies: 11
- Views: 8775
Use Dynamic Programming. Hint 1: Decomposing a directed graph into its strongly connected components. Hint 2: If we merge the vertices in each strong component into a single super vertex, and joint two super vertices (A, B) if and only if there are vertices u is element of A and v is element of B su...
- Tue Oct 30, 2007 3:13 pm
- Forum: Volume 113 (11300-11399)
- Topic: 11331 - The Joys of Farming
- Replies: 13
- Views: 8696
- Mon Oct 29, 2007 3:43 pm
- Forum: Algorithms
- Topic: Need expert's view for geometry algos.
- Replies: 23
- Views: 12081
- Mon Oct 29, 2007 1:50 pm
- Forum: Volume 113 (11300-11399)
- Topic: 11331 - The Joys of Farming
- Replies: 13
- Views: 8696
- Mon Oct 29, 2007 1:03 pm
- Forum: Volume 113 (11300-11399)
- Topic: 11331 - The Joys of Farming
- Replies: 13
- Views: 8696
What will be the outputs for this inputs?
Code: Select all
5
4 8 8
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
3 2 4
1 2
2 3
3 1
2 4
4 8 6
1 2
3 4
5 6
7 8
9 10
11 12
10 3 9
1 2
2 3
4 6
9 8
1 9
10 11
13 6
5 8
12 7
7 7 8
1 2
3 4
5 6
1 7
1 8
1 9
8 9
2 9
- Mon Oct 22, 2007 8:36 am
- Forum: Volume 113 (11300-11399)
- Topic: 11318 - Marble Game
- Replies: 10
- Views: 4313
- Sat Oct 13, 2007 4:55 pm
- Forum: Algorithms
- Topic: DAG path enumeration
- Replies: 2
- Views: 2714
Re: DAG path enumeration
I think DFS(depth first search) is the best, if you use adjacent list.bugzpodder wrote:Given a DAG (directed acyclic graph), a start and end vertex, enumerate all path lengths between them. What is the fastest algorithm?