Skip to content

Commit a7de801

Browse files
Update removing_digits.cpp
1 parent 6f5786d commit a7de801

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed

removing_digits.cpp

-35
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,12 @@
11
//Author: kaiyu
22
#include <iostream>
33
#include <algorithm>
4-
#include <cmath>
5-
#include <map>
64
#include <vector>
7-
#include <set>
8-
#include <unordered_set>
9-
#include <unordered_map>
10-
#include <cstring>
11-
#include <string>
12-
#include <queue>
13-
#include <stack>
14-
#include <numeric>
15-
#include <iomanip>
16-
#include <climits>
175
using namespace std;
186
typedef long long ll;
197
#define sz(x) ((long long)(x).size())
20-
#define all(x) x.begin(),x.end()
21-
#define endl "\n"
22-
#define ff first
23-
#define ss second
24-
#define mp make_pair
25-
#define pb push_back
26-
#define setbits(x) __builtin_popcountll(x)
27-
#define zrobits(x) __builtin_ctzll(x)
288
#define mod 1000000007 //1e9+7
29-
#define vi vector<ll>
30-
#define vvi vector<vector<ll>>
31-
#define pii pair<int,int>
32-
#define tt ll t;cin >> t;while(t--)
33-
#define int3(x,y,z) ll x,y,z;cin >> x >> y >> z;
34-
#define int2(x,y) ll x,y;cin >> x >>y;
35-
#define int1(x) ll x;cin>>x;
369
#define fio ios::sync_with_stdio(0);cin.tie(NULL);cout.tie(NULL);
37-
ll power(ll a,ll b,ll m=mod){ ll ans=1; a=a%m; while(b>0) { if(b&1) ans=(1ll*a*ans)%m; b>>=1;a=(1ll*a*a)%m;}return ans;}
38-
39-
ll gcd(ll a,ll b) { return b?gcd(b,a%b):a;}
40-
41-
42-
bool cmp(pair<string,int>p1,pair<string,int>p2) {
43-
return p1.ss > p2.ss;
44-
}
4510

4611
const int MAXN = 1 * 1000000 + 10; // 1e6
4712

0 commit comments

Comments
 (0)