Advertisement
NgJaBach

Competitive Template

May 9th, 2020 (edited)
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.15 KB | None | 0 0
  1. // NgJaBach: Forever Meadow <3
  2.  
  3. #include<bits/stdc++.h>
  4.  
  5. using namespace std;
  6. mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
  7. typedef long long int ll;
  8. typedef unsigned long long ull;
  9. #define pb push_back
  10. #define pob pop_back
  11. #define mp make_pair
  12. #define upb upper_bound
  13. #define lwb lower_bound
  14. #define bend(a) a.begin(),a.end()
  15. #define rev(x) reverse(bend(x))
  16. #define mset(a) memset(a, 0, sizeof(a))
  17. #define fi first
  18. #define se second
  19. #define gcd __gcd
  20. #define getl(s) getline(cin, s);
  21. #define setpre(x) fixed << setprecision(x)
  22. #define endl '\n'
  23. const int N=200050,M=1000000007;
  24. const ll INF=1e18+7;
  25. int main(){
  26.     ios_base::sync_with_stdio(NULL); cin.tie(nullptr); cout.tie(nullptr);
  27. //    freopen(".inp","r",stdin);
  28. //    freopen(".out","w",stdout);
  29.     int n;
  30.     return 0;
  31. }
  32. /*
  33. ==================================+
  34. INPUT:                            |
  35. ------------------------------    |
  36.  
  37. ------------------------------    |
  38. ==================================+
  39. OUTPUT:                           |
  40. ------------------------------    |
  41.  
  42. ------------------------------    |
  43. ==================================+
  44. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement