Notes

Things that I need to learn in the near future:

  • Unit testing
  • Boost (only start)
  • Wt, a C++ Web Toolkit
  • Computational geometry
  • Go
  • Nginx

Things that I need to learn in the not too distant future:

Tomorrow (June 19, 2015) I’ll start to learn all this things.

Preparing for the Programming Contest

Use #include <bits/stdc++.h>

The fastest way of I/O with files:

freopen("in.txt", "r", stdin);
freopen("out.txt", "w", stdout);

Will redirect stdin, stdout to “in.txt” and “out.txt” files, respectively.