Introduction

This is my blog of programming, I take notes and leave codes of computer science problems I solved here. Be my guest to comment :)

Thursday, December 17, 2015

UVA 11297 - Census


/*
Problem link
Type: Data Structure - 2D Segment tree/Quad tree.
Algorithm:

Wednesday, January 7, 2015

Wednesday, January 15, 2014

Wednesday, October 16, 2013

Thursday, September 12, 2013

UVa 11747 - Heavy Cycle Edges

  1  /*
  2  Problem type: Graph - MST
  3  Algorithm: Find the Minimum Spanning Tree (MST) (using Kruskal,
  4      Prim) and print out all the edges which are not included in the MST.
  5  */

Wednesday, July 10, 2013

Wednesday, June 19, 2013