Tagged Questions
ACM can stand for the Association of Computing Machinery (a 'learned society for computing'), or Audio Compression Manager (a Microsoft Windows audio codec API)
44
votes
11answers
13k views
Is it worth joining the ACM
I keep getting mail form the Association for Computing Machinery urging me to join up and get access to all these wonderful resources.
At something like $84 (USD) a year and with the dollar/pound ...
14
votes
8answers
673 views
Any Haskell online contests or problem sets?
Do you know any online problem sets or contests that accept solutions in Haskell? I know only El Judge, but unfortunately it has some problems with ghc, so any Haskell problem is rejected with "memory ...
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 ...
6
votes
8answers
323 views
Practice for programming competition
I am entering a programming competition in few weeks and have been tackling past papers. One question I am stuck on is to call a recursive function which computes all possible binary integers with n ...
5
votes
4answers
430 views
Joining ACM and IEEE [closed]
I am a software developer in France and I've realized that I am more interested in research and advanced topics more than just programming. So I decided to go back to the university next year for ...
5
votes
2answers
86 views
I joined the ACM. Which resources should I look at first?
I joined the ACM last year. The Communications magazine is a huge plus, but they have so many other things available, I feel like I'm very much missing something I should be reading. The number of ...
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 ...
3
votes
6answers
12k views
Java Code for calculating Leap Year, is this code correct?
I am following "The Art and Science of Java" book and it shows how to calculate a leap year.
The book uses ACM Java Task Force's library.
Here is the code the books uses:
import acm.program.*;
...
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 ...
2
votes
3answers
339 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 ...
2
votes
2answers
221 views
What does ACM stand for?
I see that phpBB uses the term often to describe things like XCache, ACP, eAccelerator: http://wiki.phpbb.com/display/DEV/Cache, but what does ACM actually stand for?
I understand that all of these ...
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
2answers
56 views
How can I add shapes automatically in paintComponent?
As a beginner, whenever I want to add graphical shapes inside the frame I do something like this:
public void paintComponent(Graphics g) {
super.paintComponent(g);
g.fillRect(0, 0, 10, 10);
...
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 ...
1
vote
2answers
841 views
Sending Hexadecimal data through Serial Port Communication in Linux
I have got a task of sending hexadecimal data to my COMPORT in linux. I have written this simple C code, but it sends only a decimal number. Can anyone help me in sending an hexadecimal bit.
Here is ...
1
vote
1answer
154 views
NAudio - control which ACM codec used
I'm using NAudio to convert mp3 to WAV, using the WaveFormatConversionStream.CreatePcmStream() method.
As I understand it, this asks the OS about the available ACM codecs and then chooses one.
How ...
1
vote
2answers
79 views
Where can I find previous ACM ICPC contest problems?
I'm leading a small group of developer at my university and I'd like to work through a couple of ICPC problem sets from previous years.
Searching on Google yields no useful results, just page upon ...
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.)
1
vote
2answers
2k views
Java ACM package
I'm trying to write a java application in Eclipse.
I'm really wanting to use the ACM.Program package, however, my copy of Eclipse doesn't have it installed!
I've looked all over the net, and I can't ...
1
vote
1answer
234 views
acm.graphics library - Applet starts instead
I'm trying to use the ACM library, my source code looks like this. On running it the Applet is started, but the output is still in the console within Eclipse. It is supposed the app to be started in a ...
0
votes
1answer
107 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
0answers
55 views
ACM-ICPC programming contest books [closed]
What books do you recommend to prepare for ACM-ICPC programming contest?
0
votes
3answers
72 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 ...
0
votes
1answer
60 views
Convert GSM6.10 to PCM with no data loss
I have code that converts audio from PCM to GSM6.10 and back, using MSACM functions. When I run it to convert back and forth a few times, I get a noticeable degradation in audio quality.
I did ...
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 ...
0
votes
1answer
33 views
Compiler/Bootstrapping - Slower by recompiling off old bootstrapped compilers?
I have been rereading http://cm.bell-labs.com/who/ken/trust.html and I cannot seem to grasp the concept in Stage II with the vertical tab. My question to you guys is: Are characters being checked ...
0
votes
2answers
156 views
Why does getHeight() method not work in the constructor?
This is the code:
import acm.program.*;
public class test extends GraphicsProgram{
public test(){
println(getHeight());
}
public void run(){
...
0
votes
1answer
79 views
Configuring ACM.exe and ACMBROWSER.exe tools
I'm trying to configure the acm.exe and the acmbrowser.exe tools in order to manage my service namespace. I'm using the AppFabric Labs so I set the host to 'accesscontrol.appfabriclabs.com'.
My ...
-1
votes
1answer
59 views
java mouse question ACM packages program and graphics
I have 2 classes, A and B. A is a subclass of Program (i.e. acm.program.*) and B is a subclass of GCanvas(i.e. acm.graphics.*).
In Class A I have an init method which initiates and adds class B.
...
-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 ...
-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 ...