Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <cmath>
  4. #include <math.h>
  5. #include <string>
  6. #include <algorithm>
  7. #include <functional>
  8. #include <stack>
  9. #include <list>
  10. #include <vector>
  11. #include <map>
  12. #include <set>
  13. #include <queue>
  14. #include <iomanip>
  15. #include <unordered_set>
  16. #include <unordered_map>
  17. #include <bitset>
  18. #include <regex>
  19. #include <sstream>
  20.  
  21. #define PI 3.1415926535
  22. #define ll long long
  23. #define umap unordered_map
  24. #define uset unordered_set
  25. #pragma comment(linker, "/STACK:16777216")
  26.  
  27. using namespace std;
  28.  
  29. const ll MAXN = 1000001;
  30. const ll MAXVAL = 5000000;
  31. const ll INF = (ll)1e17 + 100;
  32. const ll MOD = (ll)1e9 + 7;
  33. string failMessage;
  34.  
  35. void fail()
  36. {
  37. cout << failMessage;
  38. exit(0);
  39. }
  40.  
  41. void solve()
  42. {
  43. //Основной код проги
  44. }
  45.  
  46.  
  47. int main()
  48. {
  49. const string FILENAME = "input";
  50. #ifndef LOCAL
  51. //freopen((FILENAME + ".in").data(), "r", stdin);
  52. //freopen((FILENAME + ".out").data(), "w", stdout);
  53. #endif // !LOCAL
  54.  
  55. ios_base::sync_with_stdio(0);
  56. cin.tie(0);
  57. cout.precision(15);
  58. solve();
  59.  
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement