Advertisement
tuki2501

template

Oct 9th, 2020
933
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.65 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. // ----------- define --------------
  5. #define int long long
  6. #define vi vector<int>
  7. #define ii pair<int,int>
  8. #define fi first
  9. #define sc second
  10. #define mp make_pair
  11. #define pqueue priority_queue
  12. #define popcnt __builtin_popcount
  13. #define getBit(x, k) ((x >> k) & 1)
  14. #define xorBit(x, k) (x ^ (1 << k))
  15. #define all(x) (x).begin(),(x).end()
  16. // ---------------------------------
  17.  
  18. void Main() {
  19.  
  20. }
  21.  
  22. signed main() {
  23. #ifdef _DEBUG
  24.   // freopen("in" , "r", stdin );
  25.   cerr << "- ---- -- ----- <3\n";
  26. #endif
  27.   cin.tie(0)->sync_with_stdio(0);
  28.   int T = 1;
  29.   // cin >> T;
  30.   while (T--) Main();
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement