Advertisement
tranxuanbach

generator polygon bum bum chiu chiu

Oct 18th, 2020
998
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.19 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. #include <ext/pb_ds/assoc_container.hpp>
  3. #include <ext/pb_ds/tree_policy.hpp>
  4. using namespace std;
  5. using namespace __gnu_pbds;
  6.  
  7. #include <dir.h>
  8. #include <process.h>
  9.  
  10. mt19937 rando(dienseedvaodaypls_hoacladungchronotime_trakhoitemplatelathay);
  11. int randt(int l, int r){ return (rando() % (r - l + 1) + l); }
  12.  
  13. string tos(int x){
  14.     string ans;
  15.     ans += (char)('0' + x / 10);
  16.     ans += (char)('0' + x % 10);
  17.     return ans;
  18. }
  19.  
  20. const int tests = ;
  21.  
  22. signed main(){
  23. //    ios_base::sync_with_stdio(0);
  24. //    cin.tie(0); cout.tie(0);
  25.  
  26.     for (int test = 1; test <= tests; test++){
  27.         ofstream out;
  28.         out.open(("tenbaibumbumchiuchiu" + tos(test) + ".inp").c_str());
  29.  
  30.         // bum bum chiu chiu
  31.  
  32.         out.close();
  33.     }
  34. }
  35.  
  36. /*
  37. ==================================+
  38. INPUT:                            |
  39. ------------------------------    |
  40.  
  41. ------------------------------    |
  42.  
  43. ------------------------------    |
  44. ==================================+
  45. OUTPUT:                           |
  46. ------------------------------    |
  47.  
  48. ------------------------------    |
  49.  
  50. ------------------------------    |
  51. ==================================+
  52. */
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement