Advertisement
pb_jiang

cf template

Jul 18th, 2022
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.72 KB | None | 0 0
  1. #include <assert.h>
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4. #define dbg(...) logger(#__VA_ARGS__, __VA_ARGS__)
  5. template <typename... Args> void logger(string vars, Args &&... values)
  6. {
  7.     cerr << vars << " = ";
  8.     string delim = "";
  9.     (..., (cerr << delim << values, delim = ", "));
  10.     cerr << endl;
  11. }
  12. #define DEBUG
  13. #ifdef DEBUG
  14. #define DEBUG_CMD(cmd)                                                                             \
  15.     do {                                                                                           \
  16.         cmd;                                                                                       \
  17.     } while (false)
  18. #else
  19. #define DEBUG_CMD(cmd)                                                                             \
  20.     do {                                                                                           \
  21.         ;                                                                                          \
  22.     } while (false)
  23. #endif
  24. #define _DEBUG_CMD(cmd)                                                                            \
  25.     do {                                                                                           \
  26.         ;                                                                                          \
  27.     } while (false)
  28.  
  29. template <class T> using mpq = priority_queue<T, vector<T>, greater<T>>;
  30. using ll = long long;
  31. using pii = pair<int, int>;
  32.  
  33. int main(int argc, char **argv)
  34. {
  35.     int a = 1, b = 2, c = 3;
  36.     dbg(a, b, c);
  37.     DEBUG_CMD({
  38.         static int dbg_val = 0;
  39.         if (((dbg_val++) % 100) == 0) {
  40.             printf("in every 100 run, a=%d b=%d c=%d\n", a, b, c);
  41.         }
  42.     });
  43.     return 0;
  44. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement