Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
647 views

how to convert a string into a palindrome with minimum number of operations?

Here is the problem states to convert a string into a palindrome with minimum number of operations. I know it is similar to the Levenshtein distance but I can't solve it yet For example, input ...
3
votes
3answers
189 views

Why is insertion sort faster than quick-sort and bubble-sort for small cases?

I recently read an article that talked about the computation complexity of algorithms. The author mentioned "why insertion sort is faster than quick-sort and bubble-sort for small cases". Could ...
3
votes
1answer
358 views

UVa #112 Tree Summing

I'm working on UVa #112 Tree Summing. I have what I think should be a working solution but it is not accepted by the online judge due to a basic misunderstanding of the problem on my part. Consider ...
2
votes
1answer
100 views

UVa Online Judge in Python [closed]

I'm learning python, and I wonder is there any sites similar to UVa online judge so that I can find some interesting questions, solve it in python, submit it and get judged? Thanks!
2
votes
1answer
131 views

simulate a deterministic stack automaton (DAS) in c++

I was reading an exercise of UVA, which I need to simulate a deterministic stack automaton, to see if certain strings are accepted or not by DSA on a given entry in the following format: The first ...
2
votes
1answer
268 views

Uva Judge 10149, Yahtzee

UPDATE: I have found the problem that my DP solution didn't handle bonus correctly. I added one more dimension to the state array to represent the sum of the first 6 categories. However, the solution ...
2
votes
3answers
184 views

UVa 3n+1 Case Recursive Stack Overflow

im trying to solve this very first challange but i get stuck, i like fast program, so i decided to use recursive method not iteration unfortunately, when the input is a big integer (100000 > input > ...
2
votes
3answers
1k views

Uva's 3n+1 problem

I'm solving Uva's 3n+1 problem and I don't get why the judge is rejecting my answer. The time limit hasn't been exceeded and the all test cases I've tried have run correctly so far. import ...
1
vote
2answers
155 views

why is my 3n+1 problem solution wrong

I have recently started reading "Programming Challenges" book by S. Skiena and believe or not I am kind of stuck in the very first problem. Here's a link to the problem: 3n+1 problem Here's my code: ...
1
vote
1answer
364 views

Runtime error in UVA Online Judge

I'm doing problem 10003 "cutting sticks" of the UVa online judge, I'm pretty sure my code works and I think I' correctly exiting the problem. But still I get a runtime error, I read somewhere that is ...
1
vote
2answers
98 views

how to color the rooks in a minimal number of colors in that way – no horizontal and vertical line contains two rooks of the same color?

Here is the problem (Rooks) asks that Given a chessboard NxN, on which the rooks are placed. You have to color those rooks in a minimal number of colors in that way – no horizontal and vertical ...
1
vote
1answer
682 views

3n+1 problem at UVa

I'm having trouble running the "3n+1 Problem" from the "Programming Challenges" book (http://programming-challenges.com/pg.php?page=downloadproblem&probid=110101&format=html). I've tried ...
1
vote
1answer
194 views

How c++ assert() can create an infinite loop?

Robot judges suck! I've been accepted by UVA, only after removing the following chunks of code: cin >> ntc; /* extract newline from previous read */ char dummy(0); cin.get(dummy); assert( ...
1
vote
2answers
228 views

UVA #10410 Tree Reconstruction

I have worked on UVA 10410 Tree Reconstruction several days. But I can't get the correct answer unitl now. I have used an algorithm similar to the one which we always use to recovery a binary tree ...
1
vote
2answers
751 views

Is Levenshtein's distance the right way to tackle this Edit Steps problem?

I'm familiar with Levenshtein's distance, so I decided I would use it to solve UVA's Edit Steps Ladder problem. My solution is: import java.io.*; import java.util.*; class LevenshteinParaElJuez ...
0
votes
1answer
91 views

Non-terminating Java program 2

I have the same problem as before posted in this link. I don't why but when I tried it again but this time using Eclipse (I used Netbeans in the link). I get this results which is strictly wrong. In ...
0
votes
5answers
89 views

Non-terminating Java program

I have this Java input-related problem. I'm solving some cases in UVAToolkit, but there are some problems that the line input requires from the System.in. Basing from these codes below, how could I ...
0
votes
2answers
113 views

Help translating c++ code to java in the cutting sticks problem

Im not used to code in java so i need help to translate this code to from c++ to java in a functional way. I tried it myself but the result was always 0. It is the CUTTING STICKS PROBLEM. #include ...
0
votes
0answers
55 views

is there a opensource server for judging programming contests and problemsets [closed]

I am looking for something like SPOJ or UVA Online using which I can create my own tiny little site for creating and handling problem submissions with instant results. I looked online and found this, ...
0
votes
3answers
381 views

UVA 10189: Minesweeper

Here's the link to the problem: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=13&page=show_problem&problem=1130 This is my code and it works perfectly; ...
0
votes
1answer
409 views

UVa 10134: Is Bigger Smarter? (Dynamic programming and longest increasing subsequence)

private void findLDS() { Integer[] array = Arrays.copyOf(elephants.iq, elephants.iq.length); Hashtable<Integer, Integer> eq = elephants.elephantiqs; Integer[] lds = new ...
0
votes
3answers
451 views

(Yet Another) UVa 3n+1 Help Question

I have been beating my head against the wall trying to figure out why this is returning "Wrong Answer." I'd greatly appreciate any feedback. Edit: I reposted the code, and this version finally ...
0
votes
2answers
92 views

uvaoj 208 how can i speed up my program

why my program Time Limited Error? because of the sort? this is the question link text #include <cstdio> #include <cstring> using namespace std; int map[22][44]; int book[22]; int ...
0
votes
1answer
60 views

How can I get the following compiled on UVA?

Note the comment below. It cannot compiled on UVA because of a bug in GCC. #include <cstdio> #include <cstring> #include <cctype> #include <map> #include <stdexcept> ...
-2
votes
2answers
194 views

Problem with UVa Online Judge [closed]

I tried to solve 195 problem. Here it is. ...
-2
votes
1answer
113 views

Reading text file line by line in c++ in UVA

Please help me in reading the text file efficiently in c++ according to the UVA (ACM programming) standards. If you can provide some code snippet then i will be very thankful.