CodeChef: Practical coding for everyone can anyone tell why i am gettin WA ![]()
Hi,
Apologies for opening an old thread but i really liked the question and have been trying to get this one. My code is constantly getting WA for this question. I have tried the examples given along with some testcases mentioned in the comments, but their answer is coming fine.
http://www.codechef.com/viewsolution/3799371
Can someone please take a look and give any inputs he may want to share? It would be really helpful for me.
Thanks
The setter’s and tester’s solution links seem to be broken.
@admin why not you show at which case the answer is wrong or exceeding time limit or other case … after the contest is over…
I think this should not have any problem and I believe it will be good for a programmer like me having little bit error many times…and had to think everything in a new way…
The sub-sequence that you are talking about (eg. a#b#c#d ) is the W string. Whereas a#b#c#d#e is just a string that contains W strings in it. Which does not make it a W string.
It would not only become really nice, but also really hard 
Who knows, maybe it’ll appear in future as a challenge question!
Thanks
Its great to have this feedback. I personally am a fan of @anton_lunyov, who has mastered setting, testing, and editorial-writing.
@nihalpi1, solution links do tend to be broken at the initial point of uploading Editorials. The general aim is to roll out the Editorial as soon as possible after the contest. The Setter and Tester links will work in a day or two.
Actually ,when I read the problem statement for the first time, i do skipped that condition and coded the whole logic but then saw that it was not working for the third case.Wasted about 3 hours :’(
Adding to @unlimited700 's answer . In Hackerrank , the feature is available , showing for which test case , the solution fails.
You are calculating same thing again and again. What you are doing is going through the entire string again and again h number of times where h is the number of “#” so that makes your algo O(hn) where n is length of string in worst cast n = 10000, h=10000 so clearly your code won’t run in the specified time limit. What you could have done is you could have stored the character frequency in each possible range when you were reading the input in O(n). And then calculate the frequency in each possible range in O(26). Here’s my solution :- CodeChef: Practical coding for everyone
Third sample case was put there to drive home the condition. If it weren’t there, I expect we’d’ve got a LOT of “Why is my code giving WA” comments during the contest 
that means for test case a#b#c#d#e, answer would be 7(I’m still confused)
@devuy11 Had the same problem, I even misread it twice, when it appeared to be a lot simpler. Really need to focus more on constraints next time.
@pragrame It sure is harder to find, but my code, which I think would be correct without the constraint, still is pretty short(even shorter than what I submitted with the constraint) and very doable for most of the people who solved this problem by theirselfs I guess.
Yes, why don’t you copy someone’s AC solution and check for some self-generated tests to avoid your confusion.
@unlimited700, @tutulive - Is showing testcases for practice problems helpful or not is highly debatable. Without test cases you are forced to think of boundary conditions/cases which probably you won’t if you see them. It will prove helpful in the long run specially if you practice on SPOJ.
Hey, instead of posting your entire code here you can simply give the link to your solution here.
@r20rock the output for this test case
1
uuu####### yyy#yyy#yyy########### uuu
must be 15 whereas your code returns 0. Read the problem statement more carefully.