Month: February 2017

17
Feb
2017

Monk and Welcome Problem

#include<iostream> using namespace std; int main(){ long long int n,tr, ary1[100000],ary2[100000],d; cin>>n; for(int i=0; i<n; i++){ cin>>ary1[i];…

17
Feb
2017

CP Resource

https://www.quora.com/What-are-some-good-resources-to-learn-C++-for-competitive-programming http://blog.macacm.org/2016/06/courses-and-resources-to-excel-in.html https://www.quora.com/What-was-Anudeep-Nekkantis-Competitive-Programming-strategy-to-become-35th-in-Global-ranking-in-just-6-7-months   http://www.spoj.com/problems/ARRAYSUB/   From beginner to expert in competitive programming. https://www.quora.com/What-are-some-good-courses-on-competitive-programming http://www.geeksforgeeks.org/fundamentals-of-algorithms/ https://algo.is/ https://www.quora.com/Can-I-become-a-really-good-self-taught-programmer…

17
Feb
2017

Algorithm Journey A to Z revise

16
Feb
2017

Programming Contest Time Waste or Benefitted ?

http://stackoverflow.com/questions/3024972/problem-solving-algorithm-skill-is-a-knack-or-can-be-developed-with-practice    

16
Feb
2017

URI Online Judge | 1030 Flavious Josephus Legend

This is level 3 problem so will do it later. But this video will help for  sure….

15
Feb
2017

Outsbook Problem Soln

Some I tried before: 102 Divisor #include<cstdio> #include<iostream> using namespace std; int main(){ int d,q,r,divisor; cin>>d>>q>>r; divisor=(d-r)/q;…