文章
13
粉丝
120
获赞
4
访问
14.9k
使用cpp的内置函数
isalnum():判断是否为数字或者字母
isalpha():判断是否为字母
判断是否为数字
if(isalnum(x) and !isalpha(x))
使用这两个函数会省去很多时间
AC代码
#include <bits/stdc++.h>
#define fi first
#define endl '\n'
#define se second
#define pp pop_back
#define pb push_back
#define lowbit(x) ((x)&(-(x)))
#define all(a) begin(a),end(a)
#define lp(i,j,k) for(int i=int(j);i<=int(k);i++)
#define rlp(i,j,k) for(int i=int(j);i>=int(k);i--)
#define IO std::ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr);
using namespace std;
using ll = long long;
using pii = std::pair<int, int>;
using pll = std::pair<ll, ll>;
template <class T> inline void chkmax(T &x,T y) {if(x<y) x=y;}
template <class T> inline void chkmin(T &x,T y) {if(x>y) x=y;}
const ll mod = 1e9 + 7;
const int N = 1e6 + 10;
const int TN = 1e3 + 10;
const int INF = 0x3f3f3f3f;
int dx[8] = {0,1,0,-1,1,-1,-1,1};
int dy[8] = {1,0,-1,0,1,-1,1,-1};
int a[N],b[...
登录后发布评论
暂无评论,来抢沙发