fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define _CRT_SECURE_NO_DEPRECATE // suppress some compilation warning messages (for VC++ users)
  5. #define INF 2000000000 // 2 billion
  6. #define MEMSET_INF 127 // about 2B
  7. #define FOR(idx, a, b) \
  8.   for (int idx = int(a); idx <= int(b); idx++)
  9. #define FORit(a, it) \
  10.   for (it = (a).begin(); it != (a).end(); it++)
  11. typedef long long ll;
  12. typedef vector<int> vi;
  13. typedef pair<int, int> ii;
  14. typedef vector<ii> vii;
  15. typedef set<int> si;
  16. typedef map<string, int> msi;
  17.  
  18. //memset(arr, MEMSET_INF, sizeof arr); // useful to clear array of integers
  19.  
  20. int main()
  21. {
  22. // Code
  23.  
  24.  
  25.  
  26. return 0;
  27. }
  28.  
  29.  
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty