Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. /* codeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed by squishy1337 */
  2.  
  3. #include <bits/stdc++.h>
  4.  
  5. using namespace std;
  6.  
  7. #define sz(s) (int)(s).size()
  8. #define all(v) (v).begin(), (v).end()
  9. #define fst first
  10. #define snd second
  11. #define fastio ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
  12.  
  13. typedef long long ll;
  14. typedef unsigned long long ull;
  15. typedef long double ld;
  16. typedef pair<int, int> pii;
  17. typedef pair<ll, ll> pll;
  18. typedef vector<int> vi;
  19. typedef vector<ll> vl;
  20. typedef vector<ull> vul;
  21. typedef vector<string> vstr;
  22. typedef vector<bool> vbl;
  23. typedef vector<pii> vii;
  24. typedef vector<pll> vll;
  25. typedef vector<vi> vvi;
  26. typedef vector<vl> vvl;
  27. typedef vector<char> vchr;
  28.  
  29. const ll INF = INT_MAX, LNF = 1e9;
  30. const double EPS = 1e-9, PI = acos(-1);
  31. const int MOD = 1e9 + 7, P = 239;
  32.  
  33. mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
  34.  
  35. signed main() {
  36. fastio;
  37. #ifndef ONLINE_JUDGE
  38. freopen("input.txt", "r", stdin);
  39. //freopen("output.txt", "w", stdout);
  40. #endif
  41.  
  42.  
  43.  
  44. return 0;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement