503 Service Unavailable
Yes, I am also getting it. I sent an email I hope it will be resolved.
View ArticleBecoming a contest setter
Hi everyone, I wonder if you found it easy to become a contest setter at SPOJ. It seems from the FAQ that it is a relatively straightforward thing which requires submitting a form, but I have...
View ArticleCheating again
I thought I’d start a new thread rather than reawaken and notify everyone in the old cheating thread. Here are some more extremely suspicious submission histories:...
View ArticleVPL2_BC - Peter Quest Wrong Answer
Yes,Arrays can go out of bounds, so I changed the loop to start at 1.thank you.
View ArticleVPL2_BC - Peter Quest Wrong Answer
I see you’ve now got accepted, so presumably you found the problem?
View ArticleVPL2_BC - Peter Quest Wrong Answer
Hi guys, I’m trying to solve this problem: spoj.com/problems/VPL2_BC/ this is a easy problem,but it’s driving me crazy!! The time limit for this question is 10 seconds, and my code runs 47,610,000...
View ArticleFraktal XX
Nie jest to odpowiedni wątek, ale słyszałeś, że human wygrał w konkursowym maratonie w programowaniu z AI. Jak sam stwierdził, “jeszcze na razie”. W necie można znaleźć mnóstwo na ten temat, więc...
View ArticleJust a Palindrome
thanks for the sol. I am facing the issue just go through your sol it helped.
View ArticleSPOJ Problems Score, A Chrome Extension
Chrome has removed your extension as it’s no longer supported. Any change you could make it supported again? I miss it! Or could you make the source available?
View ArticleTree Isomorphism - Wrong Answer
When there are two centroids, you should create a new node and connect the two centroids to it, then remove the edge between the two centroids. Then run AHU algorithm without clearing map (same hash...
View ArticleHow do I change my profile picture?
Isn’t it the Gravatar entry under your profile settings?
View ArticleHow do I change my profile picture?
This is a very petty gripe, but I nevertheless wish to change it. It’s a very dumb paint drawing of mine from a couple of years ago that used to be my profile picture on google. I have no clue how the...
View ArticleHelp me please!
while (true) { int left = layer; ... // top row for (int i = left; i <= right; i++) grid[top][i] = '*'; ... layer += 2; } I’m not going to fix your code for you, but I suspect you need to make...
View ArticleHelp me please!
#include #include using namespace std; void drawSpiral(int s) { vector<vector> grid(s, vector(s, ‘.’)); int layer = 0; while (true) { int top = layer; int bottom = s - layer - 1; int left =...
View ArticleHelp me please!
i know but i tried more than one way to fix this case,but there is also an incorrect case of 78 Can you solve this problem and help me?
View ArticleHelp me please!
For the second test case, the expected answer is ***** ....* ***.* *...* ***** but your program gives: ***** ....* *.*.* *...* ***** Do you see the difference?
View ArticleHelp me please!
SPTTRN1 - Straight Line Spiral Pattern (Act 1) #include #include using namespace std; void drawSpiral(int s) { vector<vector> grid(s, vector(s, ‘.’)); int layer = 0; while (true) { int top =...
View Article