Advertisement
skimono

Untitled

Mar 4th, 2023
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1.  
  2. // clang-format off
  3. #define _CRT_SECURE_NO_WARNINGS
  4.  
  5. #include <iostream>
  6. #include <vector>
  7. #include <string>
  8. #include <algorithm>
  9. #include <cmath>
  10. #include <stack>
  11. #include <iomanip>
  12. #include <fstream>
  13. #include <string>
  14. #include <set>
  15. #include <deque>
  16. #include <queue>
  17. #include <map>
  18. #include <bitset>
  19. #include <random>
  20. #include <list>
  21. #include <unordered_map>
  22. #include <unordered_set>
  23. #include <cassert>
  24.  
  25. using namespace std;
  26.  
  27. typedef long long ll;
  28. typedef unsigned long long ull;
  29. typedef long double ld;
  30. typedef string str;
  31. //typedef __int128 ultraint;
  32. #define sqrt sqrtl
  33. #define F first
  34. #define S second
  35. #define endl '\n'
  36. #define all(vc666) vc666.begin(), vc666.end()
  37. #define allr(vc666) vc666.rbegin(), vc666.rend()
  38. #define int long long
  39. #define degug(x) cerr (#x) << " " << (x) << endl;
  40.  
  41. const ll INF = (ll)1e18;
  42. const ll inf = 1e11 + 7;
  43. const ll ONE = 1;
  44. const ll mod = 998244353;
  45. const ll LG = 20;
  46. ld EPS = 1e-12;
  47. ld PI = 3.1415926535897932384;
  48. mt19937_64 gen(rand() + rand());
  49.  
  50. void solve() {
  51.  
  52. }
  53.  
  54. signed main() {
  55. #ifdef _DEBUG
  56. freopen("input.txt", "r ", stdin);
  57. freopen("output.txt", "w", stdout);
  58. #endif
  59. ios_base::sync_with_stdio(0);
  60. cin.tie(NULL);
  61. cout.tie(NULL);
  62. int t = 1;
  63. cin >> t;
  64. while (t--) solve();
  65. }
  66. //Deisgned by skimono
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement