Advertisement
Guest User

>=<

a guest
Feb 23rd, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. #define int long long
  3. #define pb push_back
  4. #define mp make_pair
  5. #define fi first
  6. #define se second
  7. #define for1(i, a, b) for(i = a; i <= b; ++i)
  8. #define for0(i, a, b) for(i = a; i < b; ++i)
  9. #define forw1(i, a, b) for(i = a; i >= b; --i)
  10. #define forw0(i, a, b) for(i = a - 1; i >= b; --i)
  11. #define fora(v, a) for(auto v : a)
  12. #define bp __builtin_popcount
  13. #define bpll __builtin_popcountll
  14.  
  15. using namespace std;
  16. using cd = complex<double>;
  17.  
  18. typedef vector<int> vi;
  19. typedef pair<int, int> ii;
  20. typedef vector<cd> vcd;
  21. typedef vector<ii> vii;
  22. typedef vector<vector<int> > vvi;
  23.  
  24. const int modd1 = 1e9 + 7, modd2 = 998244353, maxn = 10;
  25. const double pi = acos(-1);
  26.  
  27. void solve(){
  28.  
  29. }
  30.  
  31. signed main() {
  32. //freopen(".in", "r", stdin);
  33. //freopen(".out", "w", stdout);
  34. ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
  35. solve();
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement