rav16783

Untitled

Jan 6th, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2.  
  3. #define fastio() ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);cout.precision(12);
  4. #define ll long long int
  5. #define ull unsigned long long int
  6. #define inp(n) ll n; cin >> n
  7. #define inpc(c) char c; cin >> c
  8. #define inps(s) string s; cin >> s
  9. #define print(x) cout << x << " "
  10. #define nl cout << '\n'
  11. #define pyes cout << "YES"
  12. #define pno cout << "NO"
  13. #define fr(i,a,b) for(ll i=a; i<b; ++i)
  14. #define frrev(i,b,a) for(ll i=b; i<=a; --i)
  15. #define strrev(s) reverse(s.begin(), s.end())
  16. #define pb(x) push_back(x)
  17. #define vin(A, n) vector<ll> A; fr(i,0,n){ ll x; cin >> x; A.pb(x); }
  18. #define vinc(A, n) vector<char> A; fr(i,0,n){ char x; cin >> x; A.pb(x); }
  19. #define vpairin(A, n, t1, t2) vector<pair<t1,t2> > A; fr(i,0,n) {t1 x; t2 y; cin >> x >> y; A.pb(make_pair(x,y));}
  20. #define srt(A) sort(A.begin(), A.end())
  21. #define vout(A, n) fr(i,0,n){ print(A[i]); }
  22. #define vpairout(A, n) fr(i,0,n){ print(A[i].first); print(A[i].second); nl; }
  23. #define debug(x) cout << #x << " is " << x; nl;
  24.  
  25. using namespace std;
  26.  
  27. void solve()
  28. {
  29.  
  30. }
  31.  
  32. int main()
  33. {
  34.  
  35. fastio();
  36. int t=1;
  37. // cin>>t;
  38. while(t--)
  39. {
  40. solve();
  41. cout<<"\n";
  42. }
  43.  
  44.  
  45. return 0;
  46. }
  47.  
Add Comment
Please, Sign In to add comment