Take a look at these two submissions made by me:
- http://www.codechef.com/viewsolution/7483130
Result: AC (for both tasks) - http://www.codechef.com/viewsolution/7483167
Result: TLE (for second task)
Note that the only difference between the two is that the 2nd one contains two lines extra;
#define min(a,b) ((a < b)?a:b)
#define max(a,b) ((a > b)?a:b)
Why is the 1st one AC but 2nd TLE!? o_O
Am I overlooking something that is insanely obvious?
Please Help!