From b02afceb6a8486962a372ee0b68220af17b9fd85 Mon Sep 17 00:00:00 2001 From: ShazidMahsrafi Date: Thu, 28 Dec 2023 18:38:51 +0600 Subject: [PATCH] Revert "update" This reverts commit f8976e1df02a022627c60840d01b29a3bfc7fbaa. --- Template/CPTemp.cpp | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/Template/CPTemp.cpp b/Template/CPTemp.cpp index 81ea04b..f944e0c 100644 --- a/Template/CPTemp.cpp +++ b/Template/CPTemp.cpp @@ -1,7 +1,7 @@ #include using namespace std; -#define FAST_IO (ios_base:: sync_with_stdio(false),cin.tie(NULL)); +// Short forms #define int long long #define ll long long #define ull unsigned long long @@ -11,11 +11,32 @@ using namespace std; #define pb push_back #define all(x) x.begin(), x.end() #define sz(x) (int)(x).size() + +// Outputs #define yes cout<<"YES"<>=1;} return ans;} +// Constants +#define PI 3.141592653589793238 +#define MIN INT_MIN +#define MAX INT_MAX +#define INF LONG_LONG_MAX +#define M 1000000007 +#define LLM 1000000000000000007 + +// Faster Input Output +#define FAST_IO (ios_base:: sync_with_stdio(false),cin.tie(NULL)); + +// Maths +ll fact(ll n) { if(n==0) return 1; ll res = 1; for (ll i = 2; i <= n; i++) res = res * i; return res; } +ll nPr(ll n, ll r) { return fact(n) / fact(n - r); } +ll nCr(ll n, ll r) { return fact(n) / (fact(r) * fact(n - r)); } +ll gcd(ll a, ll b) { if (b == 0) return a; return gcd(b, a % b); } +ll lcm(ll a, ll b) { return (a * b) / gcd(a, b);} +ull mypow(ull a, ull b) { ull ans = 1; a%=M; while(b){ if (b&1) ans = (ans*a) % M; a = (a*a) % M; b >>= 1; } return ans; } +bool isPrime(ll n) { if(n <= 1) return false; for(ll i = 2; i <= sqrt(n); i++) if(n % i == 0) return false; return true; } + +//Debugging #ifndef ONLINE_JUDGE #define dbg(x) cerr << #x <<" "; _print(x); cerr << endl; #define dbgin(x) cerr << #x <<" "; _print(x); cerr << ";"< void _print(pair p); @@ -36,6 +58,7 @@ template void _print(unordered_set v) {cerr<<"[ "; for(T i : v) {_ template void _print(map v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";} template void _print(multimap v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";} template void _print(unordered_map v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";} + ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void solve() @@ -48,6 +71,5 @@ int32_t main() FAST_IO; int TC = 1; //cin >> TC; - while (TC--) - solve(); + while (TC--) solve(); } \ No newline at end of file