Unofficial Editorials November Long Challenge (Part 1)

Hello Guys

I have divided problems into posts according to difficulty. Hope u all don’t mind this. :wink:

This is the part 1 of two posts of unofficial editorials for November Long Challenge.

For editorials of problems CSUBQ and SEGPROD, click here.

This post has editorials for problems VILTRIBE, CLRL, PERPALIN and CHEFHPAL (so many in single post :slight_smile: ).

Problem VILTRIBE

Problem Difficulty : Cakewalk

Problem Explanation

Given a string consisting of characters ‘A’, ‘B’ and ‘.’, Output number of characters controlled by A and B. Character C controls ith character if either of following condition is true.

  1. Ith character is C
  2. Ith character is ‘.’ and the character on both side is C (jumping all the ‘.’ characters in between)

Solution

Just do as they asked in the problem. :slight_smile:

Maintain a character C (initialised to any other character of your choice other than ‘A’, ‘B’ and ‘.’) which denote the previous controlling character encountered.

Here, we are going to count characters satisfying above of the two conditions separately Beacuse if we choose to count them together, there’s a risk of counting characters satisfying first condition twice, which is certainly not what we want.

For example of this, try input A.A.A…B.B.B

Maintain counter variables countA, countB, A, B and last where

  1. countA means number of ‘.’ characters being controlled by ‘A’
  2. countB means number of ‘.’ characters being controlled by ‘B’
  3. A means No of ‘A’ in input
  4. B means No of ‘B’ in input
  5. last means index of last controlling character. (Initialised to -1)

After all this, I guess my solution is straight forward to understand. In case you feel i should clarify any doubt, Just drop a comment. :slight_smile:

Here’s a link to my


[3]

### Problem [CLRL][4]
# 
### Problem difficulty:Simple
# 
#### Problem Explanation

Given an array of numbers, we are supposed to verify whether the array is valid based on given condition.

#### Solution

The most simple way to think about this as following:

Here, Ri denote ith element of given array.

**The given array is valid if and only if:**

For every pair of consecutive numbers R(i-1) and Ri:

If R(i-1) < Ri : R(i-1) < all elements after ith index. (type 1)

If R(i-1) > Ri : R(i-1) > all elements after ith index. (type 2)

That's it. we just need to implement it.

I have used two boolean to check if any pair of type 1 and type 2 is found.

Basic case : N <= 2 Answer is "YES" No matter what the elements are. (Be sure to input them or you'll get WA) For explanation, i set reward if anyone finds such a case with N <= 2 where answer is NO, He or she'll be appreciated in my next post. Good Luck :)

Use max and min variable to keep record of upper and lower bound.

loop from start+1 to end

compare elements (i-1) and ith position.

if (i-1)th < ith  

  if(type1 is not found yet) found1 = true. min = ith element

  if type 2 is found && ith element > max, valid = false

  min = Math.min(min, prev)


Other case works the same way. Just swap type 2 with type 2, min and max and invert the inequalities. if valid print "YES" else "NO"

Link to my 

5

Problem PERPALIN

Problem Difficulty : Simple

Problem Explanation

Given two integers N and P, construct a palindrome string of length N in which every ith character is same as (i+P)th character using only characters ‘a’ and ‘b’. If not possible, print impossible.

Further, String should not contain all a or all b.

Solution

First thing to observe is that in case P == 1 OR P == 2, ans is impossible.

Reason

if P == 1, valid strings are only aaaaa… (upto N times) or bbbbb… (upto N) times. But as Chef dislikes these strings, ans is impossible.

if P == 2, the only valid strings can be abababab or babababa. Since N is always divisible by P, N is not odd in this case, and when N is Even, first and last character of string is never same. So we cannot get a palindrome of period length 2. ans is impossible.

In all other cases, Answer always exist.

Here, there exists many solutions for this problem. But I’m gonna tell which approach i used.

Small string of length P will be repeated N/P times to generate the required string of length N.

I generated small string as:

In case P is odd, just make string ababababa till length P

If P is even: (P+2)/4 times ‘a’ + (P/4)*2 times ‘b’ + (P+2)/4 times ‘a’ (Integer division)

You may ask why i chose such a complex way to generate this string for even P. The reason is, My Choice. :smiley:

It always make palindrome string for even length >= 4.

First few strings for even P would be abba, aabbaa, aabbbbaa, aaabbbbaaa

Just see first half of strings => ab, aab, aabb, aaabb. My pattern make strings like that, increasing a and b one by one and then reverse it and append it to original one.

Hope i didn’t confused you with my small rant. Feel free to ask.

Here’s a link to my


[7]

### Problem [CHEFHPAL][8]

# 

### Problem Difficulty : Easy

# 

#### Problem Explanation

Given two integers N and A, construct a string of length N using only first A characters, minimizing length of longest palindrome substring. 2<=A<=26

#### Solution

First thing to observe here is that for A > 2, One of the correct answer is "1 abcabcabc..." upto N characters because this string cannot have any palindrome of length greater than one.

So that just leaves **A == 2, The Special Case**

Here, I am making a statement, Do tell me any counter example and you will be appreciated.

**For N > 8, there is always a string whose maximum palindrome sub-string length is exactly 4**.

I have tested many strings using a tester program, generating strings using two characters 'a' and 'b', and found this. An alternative solution is most welcome. (If you want the tester program i used, I'd recommend you to make it yourself, it would boast your skills. :) )

The reason that this works is that for a palindrome of length >= 4, we need two pair of character matching (first with last, second with second last), so we are creating a single mismatch every time.

We can't avoid palindrome length 4 after N >= 8 because consider a string aaababbb, now if we append 'a', palindrome length is 5, if you append 'b', palindrome length becomes 4.

See string babbaababbaa. This string always create exactly one mismatch for substring of length > 4. (You can always find such a string with hit and trial). 

So, I simply stored results for N <= 8 in an array.

So, i just check A>2, if yes, print abcabcabc... upto n characters.

else if N <= 8, print answer pre-calculated (Or calculate using program if you can)

else append above string repeatedly to output string till output length is exactly N. Remove extra characters in case length > N.

Here's a link to my 

9.

As always, i wholeheartedly invite your suggestions and thank for your response to my previous editorials.

14 Likes

PS:2nd part will be posted soon, maybe within an hour Sorry for delay.
Second part May also include POLY as delay gift. :slight_smile:

In 4th Ques:
For A=2 & N>8 we can also repeat the string “aababb” and mod out extra characters to get a string of exactly N length with maximum palindrome sub-string length = 4
My Code

2 Likes

Thanks for sharing… I had said, there are many strings that may work. I found the one mentioned above. :slight_smile:

1 Like

Like everytime , Nice work!

I wasn’t able to solve CHEFHPAL and by the way it’s a nice editorial bro and your approach is also simple and easy to understand

Thanks Mate!

Waiting for second part and delay gift:)

Glad u found them helpful. :slight_smile:

Polygon pl0x <3

1 Like

Not sure. I haven’t solved the problem myself…

Asking someone to explain it to me. (while giving credit)

Though i would try my best to convince that person.

aabbab also does the job. Link.

I have a doubt @taran_1407

I use the codeblocks ide

whenever i use this code snippet

ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);

Output is printed after I Give all the Inputs(if there are 4 testcases after i give all tc inputs o/p is printed)

But when i don’t use it Output is Printed after i give the each t.c i/p

Can you tell me why this happens ??

I’m sorry i can’t. I don’t code often in c++. Maybe @vijju123 may be able to help. :slight_smile:

I have tested many strings using a tester program, generating strings using two characters 'a' and 'b', and found this.

Finally someone who took same approach :stuck_out_tongue:

I was having difficulty in verifying my claim of-

The length is \lceil{Log_2 N}\rceil string of length N . Trouble because, well, testing for length around 16,17 was tedious.

I wrote a brute force program which checked for all strings of length 25,28,18 etc. I saw that strings of length 5 were possible, but the next part of proof is to prove its minimum.

And POOF, proof failed. I saw 4 was always the answer. Lol, just noted down the pattern and AC :stuck_out_tongue:

Moral of the story: ITS GOOD TO BE LAZY SOMETIMES AND LET COMPUTER DO STUFF FOR YOU XDXD

3 Likes

I think you should google this out. That will be better than anything I can explain :smiley:

Ok Bro and keep up your Good work

There are total of 8-10 such patterns which do it. Though half are asymmetric reflections of each other.

I too wrote a brute force algotihm which tested all substrings of length N in 2^N time (bitmask dp, 0 for ‘a’, 1 for ‘b’) and tested upto 24 using manacher’s algorithm for palindrome string length)

After {2}^{N} thing in complexity, I didnt care for anything else and just wrote a O({N}^{2}) code snippet for palindrome detection.

It was still slow af…(13sec for length of 26) XD