Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. #define x first
  6. #define y second
  7. #define pb push_back
  8. #define mp make_pair
  9. #define fore(i, l, r) for(int i = int(l); i < int(r); i++)
  10. #define forn(i, n) fore(i, 0, n)
  11. #define all(a) (a).begin(), (a).end()
  12. #define sz(a) (int((a).size()))
  13.  
  14. typedef long long li;
  15. typedef long double ld;
  16. typedef pair<int, int> pt;
  17.  
  18. const int INF = int(1e9);
  19. const int MOD = INF + 7;
  20. const li INF64 = li(1e18);
  21. const ld EPS = 1e-9;
  22. const ld PI = acosl(-1.0);
  23.  
  24. template<class A, class B> ostream& operator <<(ostream& out, const pair<A, B>& p)
  25. {
  26. return out << "(" << p.x << ", " << p.y << ")";
  27. }
  28.  
  29. template<class A> ostream& operator <<(ostream& out, const vector<A>& p)
  30. {
  31. out << "[";
  32. forn(i, sz(p))
  33. {
  34. if(i) out << ", ";
  35. out << p[i];
  36. }
  37. return out << "]";
  38.  
  39. }
  40.  
  41. bool read()
  42. {
  43. if()
  44. return false;
  45. return true;
  46. }
  47.  
  48. void solve()
  49. {
  50.  
  51. }
  52.  
  53. int main()
  54. {
  55. #ifdef _DEBUG
  56. freopen("input.txt", "r", stdin);
  57. ld curt = clock();
  58. #endif
  59. cout << setprecision(15) << fixed;
  60. cerr << setprecision(15) << fixed;
  61. read();
  62. solve();
  63. #ifdef _DEBUG
  64. cerr << (clock() - curt) << endl;
  65. #endif
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement