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 :)
Showing posts with label Binary Search. Show all posts
Showing posts with label Binary Search. Show all posts

Tuesday, January 6, 2015

UVA 11935 - Through the Desert

/*
Problem link
Type: Binary search
Algorithm:

Friday, March 8, 2013

Sunday, October 28, 2012

uva 679 - Dropping Balls


Problem link
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstdlib>
using namespace std;
const int maxn = 1048577;

uva 957 - Popes


Problem link
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
using namespace std;
const int maxp=100010;