Created
November 24, 2015 06:49
-
-
Save ramntry/ca23ba1f9a1b086f81ff to your computer and use it in GitHub Desktop.
cf template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <cstdlib> | |
| #include <cmath> | |
| #include <ctime> | |
| #include <algorithm> | |
| #include <deque> | |
| #include <iostream> | |
| #include <iterator> | |
| #include <limits> | |
| #include <list> | |
| #include <map> | |
| #include <string> | |
| #include <set> | |
| #include <unordered_map> | |
| #include <unordered_set> | |
| #include <vector> | |
| using namespace std; | |
| void solve(istream &in, ostream &out); | |
| int main() { | |
| ios::sync_with_stdio(false); | |
| solve(cin, cout); | |
| return 0; | |
| } | |
| void solve(istream &in, ostream &out) { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment