update
This commit is contained in:
parent
46b69a2ce0
commit
daa39daeb4
@ -1,12 +0,0 @@
|
||||
# Codeforces Solutions
|
||||
|
||||
This repository contains my solutions of Codeforces problems. They are in C++ language.
|
||||
|
||||
#### If this repository helped you out, please consider giving it a :star:
|
||||
|
||||
<div align="center">
|
||||
|
||||
## Index
|
||||
#### Sorted by Problem ID
|
||||
| Index | Problem ID | Problem Name | Question | Solution |
|
||||
| :-----: | :--------: | :----------: | :------: | :------: |
|
@ -1,9 +0,0 @@
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
## About Me :eyes:
|
||||
|
||||
I am Shazid Mashrafi.
|
||||
I am currently studying Computer Science and Engineering & trying to work my way up in the programming world.
|
||||
Visit my [Website](https://shazidmashrafi.com) and [Codeforces](https://codeforces.com/profile/ShazidMashrafi) account.
|
@ -1,7 +1,5 @@
|
||||
#include<bits/stdc++.h>
|
||||
using namespace std;
|
||||
|
||||
#define FAST_IO (ios_base:: sync_with_stdio(false),cin.tie(NULL));
|
||||
#define ll long long
|
||||
#define ull unsigned long long
|
||||
#define endl '\n'
|
||||
@ -12,22 +10,10 @@ using namespace std;
|
||||
#define sz(x) (int)(x).size()
|
||||
#define yes cout<<"YES"<<endl
|
||||
#define no cout<<"NO"<<endl
|
||||
#define neg1 cout<<-1<<endl
|
||||
#define PI 3.141592653589793238
|
||||
#define MIN INT_MIN
|
||||
#define MAX INT_MAX
|
||||
#define INF LONG_LONG_MAX
|
||||
#define MOD 1000000007
|
||||
#define LLM 1000000000000000007
|
||||
|
||||
ll factorial(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 factorial(n) / factorial(n - r); }
|
||||
ll nCr(ll n, ll r) { return factorial(n) / (factorial(r) * factorial(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);}
|
||||
#define FAST (ios_base:: sync_with_stdio(false),cin.tie(NULL));
|
||||
ull mypow(ull a,ull b,ull m=MOD) {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*i <= n; i++) if(n % i == 0) return false; return true; }
|
||||
|
||||
#ifndef ONLINE_JUDGE
|
||||
#define dbg(x...) cerr << #x << " : "; _print(x)
|
||||
#else
|
||||
@ -51,9 +37,8 @@ void solve()
|
||||
|
||||
signed main()
|
||||
{
|
||||
FAST_IO;
|
||||
FAST;
|
||||
int TC = 1;
|
||||
//cin >> TC;
|
||||
while (TC--)
|
||||
solve();
|
||||
while (TC--) solve();
|
||||
}
|
Loading…
Reference in New Issue
Block a user