See Sphere Online Judge.
16
votes
6answers
4k views
How to get REALLY fast Python over a simple loop
I'm working on a SPOJ problem, INTEST. The goal is to specify the number of test cases (n) and a divisor (k), then feed your program n numbers. The program will accept each number on a newline of ...
13
votes
1answer
256 views
How is this memoized DP table too slow for SPOJ?
SPOILERS: I'm working on http://www.spoj.pl/problems/KNAPSACK/ so don't peek if you don't want a possible solution spoiled for you.
The boilerplate:
import Data.Sequence (index, fromList)
import ...
13
votes
9answers
1k views
Shortest way to print “Success”
I have been trying this problem SUCCESS at spoj but I am not able to get optimal solution to that problem
I tried
int main(){return !puts("Success");}
but it takes 45 characters. Any alternate ...
11
votes
3answers
938 views
A Dynamic programming problem
Can anyone help me find an optimal Dynamic programming algorithm for this problem
On the way to dinner, the CCC competitors are lining up for their delicious curly fries. The N (1 ≤ N ≤ 100) ...
6
votes
1answer
333 views
SPOJ Problem KPRIMES2
Hello all
I am new to this forum and not well aware of protocols of this forum so pardon me for my ignorance. My question is related to spoj problem https://www.spoj.pl/problems/KPRIMES2/. I am ...
4
votes
1answer
62 views
Spoj PRIME1 using sieve of eratosthenes (in C)
I'm trying to solve the problem PRIME1 using segmented sieve of Eratosthenes. My program works correctly with the normal sieve that is up to NEW_MAX. But there is some problem with cases n > ...
4
votes
1answer
258 views
Help in a DP problem
I'm trying to solve a problem from SPOJ ( link ), which can be briefly described like this: Given n intervals, each with an integer beginning and end, and given the end with max time ( let's call it ...
4
votes
1answer
635 views
how to find the number of distinct subsequences of a string?
Here is another spoj problem that asks how to find the number of distinct subsequences of a string ?
For example,
Input
AAA
ABCDEFG
CODECRAFT
Output 4 128 496
How can I solve ...
4
votes
1answer
250 views
CODE1 at SPOJ - cannot solve it
I am trying to solve the problem Secret Code on SPOJ, and it's obviously a math problem.
The full problem
For those who are lazy to go and read, it's like this:
a0, a1, a2, ..., an - sequence of N ...
4
votes
6answers
2k views
Shortest code in C
Problem Statement : Sum the positive values in a series of integers.
Input :
t – number of test cases [t < 1000].
On each of next t lines given a integer N [-1000 <= N <= 1000]
Output :
...
3
votes
4answers
322 views
DFS: How to indicate the nodes of the connected components in C++
I am making a problem of ACM competitions to determine the number of connected components that have an undirected graph G and vertices belonging to each component. 've Already done with a DFS ...
3
votes
3answers
221 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
225 views
Dynamic programming SPOJ problem SCUBADIV
I am trying to solve this problem from SPOJ, it's a dynamic programming problem, but I'm having trouble visualizing the recursive step. I believe it's similar to a knapsack, but here there are two ...
3
votes
4answers
201 views
SPOJ Factorial Problem
I am trying to develop code for SPOJ factorial problem number 11. The following is my code
import java.math.*;
import java.io.*;
public class Problem11 {
/**
* Count the number of zeroes at the ...
3
votes
1answer
387 views
SPOJ Problem Flibonakki time limit exceed
I am trying to solve this problem in Haskell but getting time limit exceed. I applied all my Haskell and mathematical skill to optimize this but all in vain. Could some one please suggest me how to ...
3
votes
3answers
271 views
SPOJ KRECT problem : Counting K-Rectangle
Here is spoj problem (krect) that states
Given a M*N square board. Each square contains a letter of the English alphabet ('A' .. 'Z').
A K-rectangle of the board is a rectangle whose sides ...
3
votes
1answer
488 views
Haskell in SPOJ: “Wrong answer” in problem, but correct in my computer
Today, I submitted solutions on SPOJ to the COINS problem. I got the Fortran and the Perl solutions accepted, but I got "Wrong answer" in the Haskell solution. I thought that perhaps my code was ...
2
votes
1answer
148 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
443 views
Segment Tree with lazy propagation Time limit problem
The following is the implementation of http://www.spoj.pl/problems/LITE/ using Segment Tree's with lazy propagation. I am new to segment trees and I cannot understand why I am getting TLE. Could ...
2
votes
1answer
234 views
Pouring Water, where goes wrong?
I have finished Pouring Water from SPOJ. However, the system keeps giving wrong answer. But I cannot find out where goes wrong.
Please give a hint. Test cases are also appreciated.
#include ...
2
votes
1answer
470 views
Runtime Error (NZEC) in simple code
I'm getting runtime error (NZEC) when running the following code over at SPOJ. I'd be very thankful if any of you would kindly point out what's going on.
//0<=A<=B<=10^18, 1<=N<=10^18
...
2
votes
3answers
444 views
How to quickly sort dict() with a huge number of keys?
TLE always happen in SBANK SPOJ using python. In order to solve it, i have to sort dict(), though dict() has huge number of KEYS(maximum--100000). Use sorted() function in my code takes no effect. Is ...
2
votes
2answers
607 views
Shortest code in python (Spoj SIZECON) [closed]
I have been trying this problem SIZECON at spoj. But i not find the best solution in python.
My solution is uses 46 characters. (and get the 46 score)
Here is my solution:
c=0
...
2
votes
2answers
280 views
SPOJ ADDREV Problem
I did go through the other threads on this SPOJ problem, ADDREV (Adding Reversed Numbers), but sadly, I was not able to get an answer by any of the three programs that I have written (in C, Python ...
2
votes
1answer
381 views
Avoid NZEC error in Erlang in SPOJ
I've written code in Erlang, and I get the correct answer on my machine. But when I submit it on SPOJ it gives an NZEC (non zero exit code) error. I have used built-in functions like halt() and ...
1
vote
2answers
105 views
Typedef C Declaration [closed]
I was doing this question on spoj
http://www.spoj.pl/problems/HAJIME/ I devised two methods which are these but I am getting wrong answer everytime ? What is wrong with my solution ?
...
1
vote
1answer
87 views
SPOJ ALPHA CODE
I was practicing the dynamic programming problem on SPOJ. But I have no idea how to solve this one.
Can anyone please help ME in solving http://www.spoj.pl/problems/ACODE/ problem on SPOJ
Thanks!
...
1
vote
2answers
109 views
SPOJ The Next Palindrome
I am trying to solve SPOJ problem 5: find the next largest integer "palindrome" for a given input; that is, an integer that in decimal notation reads the same from left-to-right and right-to-left.
...
1
vote
2answers
101 views
Collatz SPOJ- python - giving NZEC error
EDIT: Hey I got the answer . The correct code is written below. As written as the answer, I should have kept the code in a try/except block
I am trying to solve the "3n+1" a.k.a Collatz Conjecture ...
1
vote
0answers
116 views
SPOJ PALIN problem (SIGABRT runtime error) [closed]
Possible Duplicate:
SPOJ PALIN problem (SIGABRT runtime error)
With reference to following question : http://www.spoj.pl/problems/PALIN/
The problem asks to find the next higher ...
1
vote
0answers
85 views
SPOJ PALIN problem (SIGABRT runtime error)
With reference to following question : http://www.spoj.pl/problems/PALIN/
The problem asks to find the next higher palindrome for an inputted number.
My program works well on my PC (I am using MinGW ...
1
vote
1answer
183 views
SPOJ Problemset (Classical): 9386. Re-Arrange II #[MAIN112]
Problem description (quoted here for convenience):
For a sequence of N integers, A1, A2, ..... AN
We can calculate the stability factor P, as
P = sum of all (abs(Ai-Ai-1)*C[i]) where 2 ...
1
vote
1answer
105 views
Architecture to Sandbox the Compilation and Execution Of Untrusted Source Code
The SPOJ is a website that lists programming puzzles, then allows users to write code to solve those puzzles and upload their source code to the server. The server then compiles that source code (or ...
1
vote
2answers
196 views
How to get through the 120 bytes limit?
This is actually a SPOJ problem: WAYS
Now this is a very easy task what we need to do is to compute the Central binomial coefficients.
Howver the problem setter include a very notorious source limit ...
1
vote
4answers
266 views
What's a Good Algorithm For This Problem?
I was trying to Solve this problem
https://www.spoj.pl/problems/DEFKIN/
I came up with an algorithm but it exceeds the time limit of the problem.
I want to know a good algorithm to solve this within ...
1
vote
5answers
418 views
Optimizing python code
Any tips on optimizing this python code for finding next palindrome:
Input number can be of 1000000 digits
COMMENTS ADDED
#! /usr/bin/python
def inc(lst,lng):#this function first extract the ...
1
vote
7answers
686 views
My Sieve of Eratosthenes takes too long
I have implemented Sieve of Eratosthenes to solve the SPOJ problem PRIME1. Though the output is fine, my submission exceeds the time limit. How can I reduce the run time?
int main()
{
...
1
vote
1answer
459 views
Time limit exceeded ->Python, SPOJ, prime number generator
I tried the SPOJ problem PRIME1. Yeah, I did go through some thread about having time limit exceeded. I am using Python 2.6.4 and IDLE. The code is here:
def prime(a):
count=0
for i in ...
0
votes
1answer
111 views
Why would Common Lisp(sbcl) use so much memory for a simple program?
since I'm a newbie to Common Lisp I tried to solve problems on SPOJ by using Common Lisp(sbcl). The first problem is a simple task of reading numbers until number 42 is found. Here's my solution:
...
0
votes
1answer
50 views
SPOJ Fashion giving runtime error Python
Problem description is here : http://www.spoj.pl/problems/FASHION/
Process : Took two lists as input , sort them using the sort() method in Python and then print the sum
Code :
import sys,os
...
0
votes
1answer
44 views
spoj palindrome, why isn't this being accepted?
The next code runs fine on my computer and does exactly what the problem states so why isn't it accepted? it keeps telling me time limit exceeded but this runs in under half a second...
The problem is ...
0
votes
0answers
60 views
SPOJ Bitmap got runtime error (SIGBUS)
SPOJ Bitmap got runtime error (SIGBUS)
SPOJ Bitmap link
There is given a rectangular bitmap of size n*m. Each pixel of the bitmap is either white or black, but at least one is white. The pixel in ...
0
votes
0answers
96 views
Is the SPOJ challenge ELEVTRBL getting the wrong answer? [closed]
link to the problem is http://www.spoj.pl/problems/ELEVTRBL/
i am implementing the problem using bfs..please provide test cases where my code fails.....is there any better way to do the problem.
I ...
0
votes
1answer
62 views
About Spoj 3370 Merge-sort
The author asked to implement the merge sort.
I always get the runtime error (NZEC), Could anybody help me out with this?
public class Main {
public static void main(String[] args) {
...
0
votes
2answers
231 views
Rotating caliper in Haskell
I am trying to implement rotating calipers in Haskell from Wikipedia . The only difference with Wikipedia is , i am calculating square of maximum width of convex polygon rather than minimum width to ...
0
votes
1answer
299 views
Runtime error (NZEC) in Factorial problem on spoj [closed]
already tested on http://ideone.com/isqXc :
import java.io.*;
import java.util.*;
import java.lang.Math.*;
public class Main
{
public static void main(String[] args)
{
try
...
0
votes
1answer
154 views
NZEC in Problem AE2B from SPOJ。
I wrote a piece of code to solve this problem.
I keep getting NZEC(runtime error), but I can't find which part of the code can cause any Exception since it
only involves simple arithmetic ...
0
votes
2answers
140 views
SPOJ small factorials problem
Here is the exact question
You are asked to calculate factorials of some small positive integers.
Input:
An integer t, 1<=t<=100, denoting the number of testcases, followed by t ...
0
votes
1answer
130 views
SPOJ question - WHat is going wrong here?
I was answering this spoj question:
http://www.spoj.pl/problems/JAVAC/
I coded the submission in C++. I am pasting it below. The submission consistently gives wrong answer. I cannot find a test case ...
0
votes
0answers
64 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, ...