Month: March 2016

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;…

14
Mar
2016

Simulation and Modelling

Here I will Share Single Channel Server Queuing System Details

14
Mar
2016

Web Engineering

Will share the modular arithmetic solution here soon.

14
Mar
2016

Artificial Intelligence

Will share something about this topic soon

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;…