Tagged Questions
7
votes
4answers
279 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 ...
2
votes
2answers
126 views
Dynamic programming [closed]
Never had to deal with the DP.
We have N stones with weights W_1,...,W_N. Need divide all stones for 2 parts, that difference between them was minimal.
As we have n = 6, and weight = 1,4,5,6,7,9 ...
1
vote
1answer
116 views
Ogg to Riff/Wave encoding with acm
My task is to record wave file, convert it to ogg and pack it to the riff container. First two parts were done, but I have problems with the third part. I've found a source code which can solve my ...
1
vote
4answers
274 views
Large exponents in C++
In C++, how can I calculate something like 2009^1389? (That's 2009 raised to the 1389th power, not the bitwise XOR.)
0
votes
1answer
248 views
Acm problem on Euler's Totient function (Homework)
My teacher have given us a acm problem about a math problem. I've tried but get the TLE.
Here is the problem.
Euler's Totient function, φ (n) [sometimes called the phi function], is used to ...
-1
votes
1answer
309 views
Which language is better suited for a programming competition: Java or C++? [closed]
I'd like to know which one is more suitable for programming contests, online judges.
I don't want answers like "go with java" or "c++ is the fastest". I'd like to know that in more details, lets say ...