I disclaim thee, o’ liability

USACO setup


USACO is fun. Though it is fairly easy to get up and running on the platform, there remain a few repetitive steps during problem solving that can be automated. Here is a brief summary of my automation steps:

  1. Use a template. Here is mine. Save it as template.cpp:
    /*
    ID: sinha.k1
    PROG: TEMPLATE
    LANG: C++11
    */
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <ctime>
    #include <cassert>
    #include <iostream>
    #include <algorithm>
    #include <set>
    #include <vector>
    #include <sstream>
    #include <typeinfo>
    #include <list>
    #include <map>
    #include <queue>
    #include <stack>
    #include <unordered_map>
    #include <unordered_set>
    #include <numeric>
    #include <utility>
    #include <iomanip>
    #include <bitset>
    #include <fstream>
    #include <limits>
    using namespace std;
    typedef long long int64;
    int main(int argc, char const *argv[]) {
    ofstream fout("TEMPLATE.out");
    ifstream fin("TEMPLATE.in");
    fin.close();
    fout.close();
    return 0;
    }
  2. Save this script as solve.sh in the same directory as above:
    #!/bin/bash
    if [[ $# < 1 ]]
    then
    echo "Usage: ./solve.sh <PROBLEM_NAME>"
    exit -1
    fi
    PROBLEM_NAME="$1"
    TEMPLATE_FILE="template.cpp"
    # Clone template
    echo "Cloning template $TEMPLATE_FILE ..."
    cp "$TEMPLATE_FILE" "$1.cpp"
    sed -i -- "s/TEMPLATE/$1/g" "$1.cpp"
    echo "Template successfully cloned into $1.cpp"
    # Create input file
    echo "Creating input file $1.in ..."
    touch "$1.in"
    echo "Input file $1.in successfully created"
    # Success!
    echo -e "\nDone! All the best!"
    view raw usaco_solve.sh hosted with ❤ by GitHub
  3. All done! Whenever you’re ready to begin coding a solution, simply execute ./solve.sh PROBLEM_NAME

All the best!

Read more ⟶

Hello USACO


I love competitive programming. I love the anticipation while I wait with my fingers crossed after submitting a solution. And the rush that follows after getting an ‘AC’.

After stagnating near the 60-70th percentile for eons, I have decided to dedicate focused practice time for competitive programming. The next series of blog posts will track my journey through USACO.

All the best to me!

Read more ⟶

Facebook Hacker Cup 2015 Qualification Round Solutions


Facebook recently organized the qualification round of Hacker Cup 2015. They posed some interesting problems and anyone who could get at least one problem right can move to the next round.

I managed to get a rank of 217, with a perfect score of 100. I have posted my solutions below with a little bit of commentary. You can access the problems here.

Cooking the Books (15 points)

This was the easiest question. Since the constraints were so small, it suffices to use brute force and try all possible swaps. Care has to be taken however to make sure that a number never starts with 0.

Read more ⟶