ACM can stand for the Association of Computing Machinery (a 'learned society for computing'), or Audio Compression Manager (a Microsoft Windows audio codec API)

learn more… | top users | synonyms

0
votes
1answer
16 views

Problems with Brick Collision Detection in BreakOut game

I've done my first BreakOut Game while completing an assignment for Stanford University CS Online Course for java. However I noticed during play testing that when the ball sometimes hits a brick ...
0
votes
1answer
84 views

How can i do cnf operator in java?

I'm trying to do CNF operator in Java and I have an error with equality. Firstly, I did most of the software but I didn't do totally. My codes are here : import acm.program.*; public class split ...
1
vote
1answer
45 views

How to write my java programme with ACM library(ConsoleProgram)?

I want ask a little question about my programme. This is my code sample ; public static void main(String[] args) { int q; int p; int thelargest; int thesmallest; Scanner input = ...
0
votes
3answers
80 views

how can I discard the largest and smallest numbers when I calculate the arithmetic mean?

I want ask a quesiton about discarding the largest and smallest number when the programme calculates the arithmetic mean ? This is my code sample ; public static void main(String[] args) { int ...
0
votes
1answer
35 views

What is the usefulness of object-oriented programming in ACM-ICPC? [closed]

In real ACM-ICPC, in what way does using object-oriented programming actually help to solve the problems? For problems which require direct simulation, is using OOP to represent the things in the ...
2
votes
1answer
123 views

Minesweeper - Online Judge “Wrong answer” although it works on Netbeans

I was trying to submit Minesweeper problem on UVa (http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=1130) Sample input: 4 4 ...
0
votes
2answers
55 views

Need help running program in Eclipse

I just started taking the Stanford CS106a course on iTunes, but I'm running in to problems with Eclipse. Here's my code: /* * File: Add2Integers.java * ----------------------- * A simple ...
0
votes
0answers
10 views

uva online judge 293-Bits

I know it's not a programming problem(like error,exception or...) but I wonder if anyone have any idea about this problem? there were just some short discussions in forum and not useful for me. Is ...
0
votes
2answers
26 views

Getting NullPointerException when making GImage

So here is a part of my code thats throwing NullPointerException: public class PuzzleGame extends GraphicsProgram implements KeyListener{ private ArrayList <PuzzleImage> list = new ...
0
votes
0answers
61 views

Can't get graphics working with my game of hangman

im using the acm package and can't work out why my graphics on my game won't work. Here's the code I've made so far. public static void setup(){ canvas = new HangmanCanvas(); canvas.setup(); ...
0
votes
0answers
40 views

Java acm, GRect method, Inheritance add method doesnt show

I am reading about inheritance. I tried to do the example but something is amiss. I wrote every bit of code but a certain method which was suppose to be inherited doesnt show. the method is ...
0
votes
0answers
58 views

usb virtual port com : set_line_coding result eoverflow

I have a problem to establich connection between pc (usb host on windows xp sp2) and my electronic board (usb device under development). I would like emulate a com port. My current state is : - I use ...
2
votes
2answers
179 views

Any faster solution other than this bruteforce approach

I've been submitting programs to this problem at ACM. Problem ID=1922 but my solution keeps getting Time Limit Exceeded on test 3. My idea is to use brute-force but with some branches-cutting-off. ...
2
votes
2answers
130 views

C# Linq slower than PHP? Solving riddle #236A

I'm training with solving Olympic IT-riddles on one site. I have provided two solutions: - C# http://ideone.com/exF1HJ - PHP http://ideone.com/WbaPHY I was confused when online ...
0
votes
0answers
53 views

When creating a new GCanvas (acm livrary), no dimensions are assigned by default

I have defined a GCanvas class like that: public class MyCanvas extends GCanvas { public void reset() { String text = "Width: " + getWidth(); add(new GLabel(text, 200, 300)); ...
-3
votes
2answers
87 views

Algorithm to solve this ACM Q [closed]

Here is the question : Mountain Road I've been thinking about it for a few days. I already have thought about depth-first-search and breath-first-search, but they seem to consume more time than ...
15
votes
9answers
726 views

O(n^2) isn't fast enough in solving this. any faster approaches?

I've been trying to solve this problem on ACM Timus http://acm.timus.ru/problem.aspx?space=1&num=1932 My first approach is O(n^2) which surely isn't fast enough to pass all tests. The below ...
1
vote
0answers
129 views

How to handle window size for GraphicsProgram (ACM library)?

I want to define the size of the window, but I did not find a clean way to do it. SetSize() gives a strange result: public class Test extends GraphicsProgram { public void run() { ...
0
votes
3answers
304 views

Basic Java Graphics and coordinates not working properly

I've done quite a bit with the acm graphics library in the past and I've just begun working on the breakout problem that Stanford assigns. One of the issues which I've had several times in the past ...
0
votes
1answer
41 views

Why is the ACM code based executed as an applet and not a program in Eclipse

I have imported the assignments files containing the acm.jar library in an eclipse project. Everything runs fine, except that by default, when clicking on "run", the code is processed as an applet ...
0
votes
0answers
140 views

ACM API based Java exercise [closed]

I came across an exercise (in the book "The Art and Science of Java" by Eric Roberts) that requires using only GArc and GLine classes to create a lettering library which draws your initials on the ...
0
votes
1answer
68 views

How do you remove one box to continue a 'for' loop in java? [closed]

I'm new to java and I am trying to write a code that generates 10 random boxes then removes one box and adds another. Thus the total remains 10 boxes, but the loop keeps going. I have figured out how ...
0
votes
1answer
369 views

Simple Nim Game

I recently learnt the basic strategy of Nim game where there are piles of elements. Then one have to chose a pile and remove any number of elements from that pile. I found some problem that is said to ...
0
votes
3answers
264 views

ACM 10038 Jolly Jumpers

I have written the solution code of Jolly Jump problem (ACM 10038 uva). My Code is as follows: #include<stdio.h> #include<stdlib.h> int main(){ int count=0; int Number[3000]={0}; ...
0
votes
1answer
57 views

Java: MouseListeners and returning objects

So I got this simple MouseListener set up. and I want it to get me which object I am pointing at. But it don´t seem´t work on GObjects, which are part of the acm library and included GRects, GLabels ...
0
votes
3answers
71 views

How can I add the ACM library in Ecplise?

I'm in an introductory CS class and Dr.Java has really limited functionality compared to Eclipse. How can I add the ACM.jar file for use in Eclipse?
0
votes
3answers
289 views

What does a thread 3 NullPointerException mean in my code?

I keep getting this error when I compile and run my Java program using the ACM library Exception in thread "Thread-3" java.lang.NullPointerException at ...
1
vote
4answers
378 views

How can i detect BlankLine that Scanner has receive?

I want to get data form text files ,and I use Scanner to get data form text file. It's profile save pattern name status friend friend . . (Blank line) Blank Line is separate each profile.(friend ...
1
vote
3answers
136 views

How do I get object from HashMap respectively? [duplicate]

Possible Duplicate: How do I iterate over each Entry in a Map? I make the personal profiles database,and I use HashMap to collect profile. private HashMap<String, Profile> database; ...
0
votes
1answer
69 views

ACM MIPT - One rectangle - sample input 2 incorrect?

I am not clear about problem 15 (One rectangle) of ACM MIPT (http://acm.mipt.ru/judge/problems.pl?problem=015), specifically sample test case 2. Shouldn't the maximum rectangle for that case have area ...
0
votes
1answer
82 views

ACM programming - Arithmetica 1.0 - any additional operators?

Has anyone in this forum attempted to solve the ACM programming problem http://acm.mipt.ru/judge/problems.pl?browse=yes&problem=024? It is one of the simpler problems in ACM MIPT and the goal is ...
0
votes
3answers
127 views

When creating objects through iteration, how do I get a specfic object?

I got an instance variable of type GRect private GRect brick; that I create several of, through iteration private void makeBrickLineX(int x, int y, Color color) { for (int i = 0; i < ...
0
votes
2answers
56 views

How can i incorporate any object in JAVA to one things?

I write Hangman game finished,But i want to move the hangman out of canvas when Gameover, And i create that hangman with any partition of him body.When i move the object it can move only one object ...
2
votes
2answers
124 views

How can I create rounded diagonal lines in Java using the ACM library?

I am trying to draw rounded diagonal lines in Java using the ACM library. A very complicated method would involve drawing a diagonal line, scaling it up to increase its width, drawing an arc on the ...
0
votes
1answer
235 views

Instance variable initialized in constructor of class becomes null in overridden method

Here I have a simple class that extends a class in the ACM graphics library called GRect. Grect is a basic rectangle that can be drawn to a GCanvas (Also part of ACM). What I want to achieve is a new ...
0
votes
1answer
106 views

How to fix Animation (Java) Need help =]

The program detects left and right arrow keys. If any of those keys are pressed, my Knight object which is an instance of GImage class goes through an array of strings(those strings are directory path ...
1
vote
2answers
88 views

GImage can't find my image

I was trying the acm library and when I tried to use the GImage it can't find my image. I tried putting it everywhere and still it can't find it. Where does GImage look for an image(please be ...
2
votes
1answer
173 views

Given an increasing polynomial, how do you efficiently find x values for fixed intervals of y?

Problem: Given a polynomial of degree n (with coefficients a0 through an-1) that is guaranteed to be increasing from x = 0 to xmax, what is the most efficient algorithm to find the first m points with ...
-2
votes
2answers
191 views

Prime factors output - what's the issue?

I am entering the UVA online programming competition, and am working on a solution for UVA 583 (Prime Factors). I recently made a Java solution for this that got accepted. When I tried translating it ...
0
votes
0answers
88 views

What wrong with my code , I can't use KeyPressed method?

public void run() { setSize(700,700); setGame(); } public GObject drawPlayer() { GOval player = new GOval(getWidth()/2,getHeight()/2,10,10); player.setFilled(true); ...
0
votes
1answer
153 views

Java / ACM: Why doesn't my object move?

I'm currently going through Eric Robert's Art and Science of Java, which uses the ACM Java libraries. One of the exercises has the student build a clone of Breakout. I'm having issues with the ...
-5
votes
2answers
117 views

Need to solve Descending Sorting technique? [closed]

struct com { unsigned short n,a; bool operator()(com const& c1,com const& c2) const { if(c1.a<c2.a) return 1; if(c1.a==c2.a) return ...
1
vote
1answer
86 views

Why isn't the JButton depressing?

I have a very simple example. A button on the bottom of the screen that says "hi" and when its clicked it prints "hello" to the console. However, When I press the button, it doesn't change visually. ...
0
votes
0answers
57 views

java control bar interaction not displaying

I have a simple little drawing program. I add all this stuff to the SOUTH control panel and it all does what its supposed to do but the button doesn't highlight when I press it and the check box ...
0
votes
0answers
66 views

Eclipse not recognizing image file using GImage from acm library

I am learning java using the acm library and Stanford Course cs106a. I created an image folder under my src folder and stored a couple images in there, .png, .jpeg, .jpg. I wrote a simple program to ...
0
votes
1answer
47 views

Converting ACM graphics window to image file

I'm new to this website and relatively new to Java. I've created a Java application that uses the ACM graphics package and extends a GraphicsProgram. I want to now be able to convert the contents of ...
0
votes
0answers
56 views

Testing ACM programs with Xcode

I spend a lot of time solving ACM exercises so I'm interested if it's possible to automatize the testing procedure in Xcode. I'm using ANSI C. What do I need? Redirecting an input file to my ...
1
vote
1answer
205 views

Creating a moving object when user presses a key (Java)

The idea of my program is to create a picture and have that picture move up in a graphical window, which is exactly what the rollBall() method does. The method works when I put the rollBall() method ...
1
vote
1answer
133 views

Is GSM6.10 audio format block or stream based?

I might be asking the wrong question, but my knowledge in this area is very limited. I'm using acmStreamConvert to convert PCM to GSM (6.10). Audio Format: 8khz, 16-bit, mono For the PCM buffer ...
0
votes
1answer
130 views

Embed .jar file in html that require .txt file (java)

I'm using the acm libraries for my Java program, and I want to embed my program into my website via HTML. I have other .jar files embedded just fine in my website, by using the <applet ...

1 2