Tagged Questions

7
votes
4answers
278 views

Algorithm to make numbers from match sticks

I made a program to solve this problem from the ACM. The problem is that it's way too slow to solve it for 100 matchsticks. The search tree is too big to bruteforce it. Here are the results for the ...
4
votes
2answers
340 views

how to represent a number as a sum of 4 primes?

Here is the problem (Summation of Four Primes) states that : The input contains one integer number N (N<=10000000) in every line. This is the number you will have to express as a summation of ...
2
votes
3answers
338 views

In how many ways can you tile a 3xn rectangle with 2x1 dominoes?

Everyday I struggle with algorithm questions and try to ask here which I can't answer. Excuse me, if I cause any headache. Anyway, Here is the problem from the University of Waterloo ACM Programming ...
1
vote
1answer
94 views

Resource allocation problem

I was trying to solve some problems from ACM Problem Set. I stumbled upon one interesting which was too difficult for me. Detailed information: http://www.karrels.org/Ed/ACM/93/prob_g.html For me it ...
0
votes
1answer
106 views

ACM dropping balls

Below is the code that I have copied from link http://progspedia.blogspot.com/2011/05/679-dropping-balls.html#comment-form #include<stdio.h> int main() { int t,D,I,P,i,j; ...
0
votes
3answers
71 views

What is the complexity of “Crypt Kicker”?

I am thinking about crypt kicker problem. I think I can solve it by brute-force trying all permutations of the letters (perhaps with some optimizations). However the worst-case complexity of this ...
-2
votes
1answer
46 views

Wrong Answer ACM A Node too far

I have written code for the problem "A Node too far" problem id uva 336. But it is giving wrong answer can any one guess what i am doing wrong. Below is my code. The link to the problem is A Node too ...