Category: Problem Solution

03
May
2016

Red Cross in Internet LAN icon on system tray

Today I faced this problem.I tried all method found on the net but didn’t worked anything.So I…

17
Mar
2016

UVA 12798 – Handball Solution

My code: #include<bits/stdc++.h> using namespace std; int main() { int n,m,i,j; while(scanf(“%d %d”,&n,&m)==2) { int cnt=0; for(i=0;…

13
Mar
2016

Codeforces Solution : Theatre Square

Here to remember: – Theatre square is rectangular shape n X m meters –  Each flagstone is…

12
Mar
2016

UVA 12541-Birthdates Solutions

Took hints from here: http://www.outsbook.com/uva/?page=latest_post&category=-1&id=12541 and https://github.com/morris821028/UVa/blob/master/volume125/12541%20-%20Birthdates.cpp Code: #include<bits/stdc++.h> using namespace std; int main() { //freopen(“in.txt”,”r”,stdin); int n,i;…

06
Mar
2016

UVA Solution 11547 – Automatic Answer

Editorial: Actually I was facing the problem how can make the second digit from the left that…

06
Mar
2016

UVA solution 11455 – Behold my quadrangle

Editorial: we need to read those : https://en.wikipedia.org/wiki/Quadrilateral https://www.mathsisfun.com/quadrilaterals.html And one thing to be remebered that to…