Advertisement
Vince14

C++ Template

Apr 19th, 2025 (edited)
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.69 KB | Source Code | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <cstring>
  4. #include <algorithm>
  5. #include <cmath>
  6. #include <regex>
  7. #include <vector>
  8. #include <set>
  9. #include <map>
  10. #include <stack>
  11. #include <queue>
  12. #include <deque>
  13. #include <unordered_map>
  14. #include <numeric>
  15. #include <iomanip>
  16. using namespace std;
  17. #define pii pair<int, int>
  18. #define ll long long
  19. #define FAST ios_base::sync_with_stdio(false); cin.tie(NULL)
  20. #define mp(x1, x2) ( make_pair(x1, x2) )
  21. const int dx[4] = {1, 0, 0, -1}, dy[4] = {0, 1, -1, 0};
  22. const int dl[2] = {1, -1};
  23. const int MOD = 100000007;
  24. const int MAXN = 202020;
  25.  
  26. int main(){
  27.     FAST;
  28.     freopen("combo.in", "r", stdin);
  29.     freopen("combo.out", "w", stdout);
  30. }
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement