w3ntz

shapka

Dec 19th, 2021 (edited)
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.71 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. #define rtn return 0
  3. #define ctn continue
  4. #define eb(x) emplace_back(x)
  5. #define all(a) a.begin(), a.end()
  6. using namespace std;
  7. typedef pair <int, int> pii;
  8. typedef vector <int> vi;
  9. typedef vector <pii> vpii;
  10. typedef vector <vi> vvi;
  11. typedef set <int> si;
  12. typedef set <pii> stpii;
  13. typedef long long ll;
  14. typedef vector <ll> vll;
  15. ll ceil(ll a, ll b) {
  16.     return a / b + (a % b != 0);
  17. }
  18. ll pow_(ll a, ll b) {
  19.     ll ans = 1;
  20.     while (b--)
  21.         ans *= a;
  22.     return ans;
  23. }
  24. int main() {
  25.     cin.tie(0); cout.tie(0); ios::sync_with_stdio(0);
  26.     #ifndef ONLINE_JUDGE
  27.     freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout);
  28.     #endif // ONLINE_JUDGE
  29.    
  30. }
Add Comment
Please, Sign In to add comment