Wednesday, 26 June 2019

ClearTax India Intern

I got placed in ION Trading during campus placements. But I was not satisfied, I wanted to work at some good startup. I started to reach out to people on LinkedIn regarding openings in fast moving startups. Fortunately, I asked one of my seniors who was working in ClearTax and he agreed to share my...

Tuesday, 25 June 2019

Microsoft IDC intern

Oh! It's been a long time. From the time of my last post, tons of things have happened. Some of those things are, got my first backlog in engineering (that also in my fav subject, surviving in SPPU is tough), interned (SWE) at Microsoft IDC, interned (SWE) at ClearTax India and started working as...

Tuesday, 11 July 2017

MO's ( Query-Sqrt Decomposition) Algorithm on Tree

I was trying hard to solve a problem from July Long Challenge and even after one day of thinking i was not able to solve it. So i decided to solve sub-tasks. For solving sub-tasks, i decided to use MO's algo (aka Query-Sqrt Decomposition). Prerequisite: MO's algorithm, Euler tour technique...

Thursday, 26 January 2017

AGGRCOW - Aggressive cows SOLUTION

AGGRCOW - Aggressive cows is a good question based on Binary Search! (It took me an hour to figure out, how to crack this nut using binary search :P ) My solution's complexity is O(n logn). If you haven't done a lot of problems based on binary search, then this problem will make you learn something good! Now let us talk about the question. In the problem statement it is given that N...

Saturday, 24 December 2016

ACM ICPC Asia Chennai regional 2016

Today, i am going to write something off-topic, which is not related to "SPOJ solutions". Well, this is pretty clear from the title that i am going to talk about my experience of ACM ICPC Asia Chennai regional. Overall it was a good experience, but it would have been better if our team would...

Wednesday, 7 December 2016

CODERE3 - Coder Express 3!! - SOLUTION

CODERE3 - Coder Express 3!! is very easy DP problem. I've solved this problem in O(n^2), but there is a better solution also, which runs in O(n(logn)) time complexity. This problem is based on longest increasing sub-sequence (link for n*logn recursive DP for LIS). There are two arrays, l[] and r[]. ith index of l[] tells the longest increasing sub-sequence till ith...

IAPCR2F - Summer Trip - SOLUTION

IAPCR2F - Summer Trip is an easy DSU problem. If you don't know what Disjoint set union is, then you should first understand DSU then try solving this problem! I've solved this problem using breadth first search (BFS). There are T test cases, and each test case contains 'n', which denotes the number of students who are going for trip, and 'm'  denotes the number of relations between them. Next...

Friday, 2 December 2016

FRNDCIRC - FRIEND CIRCLE - SOLUTION

FRNDCIRC - FRIEND CIRCLE is an easy DSU problem. If  DSU is an "alien" term for you, I recommend you to, understand Disjoint set union first and then try solving this problem! If you want to solve easier problem based on DSU, try solving FOXLINGS. If you find difficulty in solving this problem you can refer to the tutorial. In this problem, in each test case, we are given 'n' , number...

Thursday, 1 December 2016

HERDING - Herding - SOLUTION

HERDING - Herding is an easy DSU problem. If you are not familiar with term DSU, I suggest you to first of all understand DSU, then try solving this problem. In this problem, we are give a n*m array and  each block of array contains 'N','S','W' or 'E'. 'N' is for north, 'S' for south, 'W'...

Wednesday, 30 November 2016

GCPC11J - Time to live - SOLUTION

GCPC11J - Time to live is an easy BFS problem, which can be solved by applying BFS twice. If you are not familiar with the term Breadth First Search (BFS), then i suggest you to first of all understand BFS, then try solving this problem. In this problem, our job is to minimize the number of TTL we need to send from the router to the farthest computer. So all we need to do is find a node,...

Saturday, 26 November 2016

FOXLINGS - Foxlings - SOLUTION

I am assuming that you have already understood the problem statement otherwise go back and read the problem statement once again: PROBLEM STATEMENT If you are not familiar with DSU and path compression, I suggest you to go and read this post first. There are total N Foxlings , and if one foxling gets a cracker he divides it and give it to his friend too, in this way, if only one...

Friday, 25 November 2016

ONEZERO - Ones and zeros -SOLUTION

ONEZERO - Ones and zeros is an easy BFS + Modular Arithmetic problem. I am assuming that you have already understood the problem statement, otherwise go back and read the problem statement again. If you are not familiar to the term BFS, i suggest you to first read basics of BFS. In this problem, we have a made a queue which contains pairs, and each pair consists of a string...

MCOINS - Coins Game - Solution

MCOINS - Coins Game is an easy bottom-up DP problem. I am assuming that you have already understood the problem statement, otherwise go back and read the problem statement again. In this problem, we have made an array b[] which contains height of different towers, and we have to print a string containing A and B, who's ith element represent the player who will win for the ith tower....

Thursday, 24 November 2016

FARIDA - Princess Farida - SOLUTION

This is an easy DP problem, which can be solved using bottom-up DP. Let us take an array a[] which keeps the number of coins ith monster keeps. Lets make a new array dp[] dp[0]=0; and further for every index i dp[i] = max(a[i] + dp[i-2], dp[i-1]) I hope you can implement the code yourself or refer to the following code: ...

LOSTNSURVIVED - Lost and survived - SOLUTION

I am assuming that you have already understood the problem statement otherwise go back and read the problem statement once again: PROBLEM STATEMENT If you are not familiar with DSU and path compression, I suggest you to go and this post first. There are 'N' survivors and  'Q' queries in each test case. In each query two survivors become friends uniting their respective groups into a larger...

CORNET - Corporative Network - SOLUTION

I' am assuming that you've already understood the problem otherwise go back and read the problem once again : PROBLEM STATEMENT. If you are not familiar with DSU, I suggest you to go and read this article first: DSU It is a simple DSU problem in which whenever a query starts with 'I' you have to do union of A and B, where A is always a server, but B may be or may not be a server....