Real Cool Problems and Answers In this blog I will keep updating the most beautiful questions I find in the day and the concept behind it and also briefly explain it. This would help me make notes and you to see beautiful problems with some hints. Before starting, prepare yourself to try some of the best problems you have on codeforces and hackerrank and much more. Please comment good questions and concepts you want to understand(I am not a pro, we would understand it on our way). Mixing Water: Link: https://codeforces.com/contest/1359/problem/C Concept: Simple yet elegant math. A simple question but the catch is somewhat tricky.Simple two equations. Let x be number of cups of hot water, y be number of cups of cold water, and the net temperature would be (x*h+y*c)/(x+y). We want this to be as close as possible to t. Suppose ths expression is equal to t then equation becomes (x*h+y*c)=t*(x+y). and my x can be y or y+1(think about it or comment if you can't figure it). So...