代码:
#include
using namespace std;
const int MAXN = 10010;
bool arr[MAXN];
int main(){
int n, ans = 0, a;
cin >> n;
while(n --){
cin >> a;
//防止 -1 越界
a += 1;
arr[a] = true;
ans += arr[a - 1];
ans += arr[a + 1];
}
cout << ans << endl;
return 0;
}
代码:
#include
using namespace std;
const int MAXN = 110;
int g[MAXN][MAXN];
int main(){
int n, a, b, c, d, ans = 0;
cin >> n;
while(n --){
cin >> a >> b >> c >> d;
//将矩形坐标同时增大1,不然下面差分会导致数组越界
a ++, b ++, c ++, d ++;
g[a][b] ++;
g[a][d] --;
g[c][b] --;
g[c][d] ++;
}
for(int i = 1; i < MAXN; i ++){
for(int j = 1; j < MAXN; j ++){
g[i][j] += g[i][j - 1] + g[i - 1][j] - g[i - 1][j - 1];
if(g[i][j])
++ ans;
}
}
cout << ans << endl;
return 0;
}
代码:
#include
#include
using namespace std;
//将字符串转换为小写串
string fun(string a){
for(char &c : a){
c = tolower(c);
}
return a;
}
int main(){
string s, a;
int op, n;
cin >> s >> op >> n;
while(n --){
cin >> a;
if(op && a.find(s) != string::npos)
cout << a << endl;
else if(!op && fun(a).find(fun(s)) != string::npos)
cout << a << endl;
}
return 0;
}
代码:
#include
#include
#define ac cin.tie(0); cin.sync_with_stdio(0);
using namespace std;
struct node{
int a, b, c;
};
typedef pair<int, int> PII;
const int MAXN = 1010;
node arr[MAXN * MAXN];
int dist[MAXN][MAXN], n, m, k, d, fx[4][2] = {
{
0, 1}, {
0, -1}, {
1, 0}, {
-1, 0}};
int main(){
ac
int a, b;
long long ans = 0;
queue<PII> Q;
cin >> n >> m >> k >> d;
// -1 代表待走过的点
for(int i = 1; i <= n; i ++)
for(int j = 1; j <= n; j ++)
dist[i][j] = -1;
while(m --){
cin >> a >> b;
//0 代表源点
dist[a][b] = 0;
Q.push(PII(a, b));
}
for(int i = 0; i < k; i ++)
cin >> arr[i].a >> arr[i].b >> arr[i].c;
while(d --){
cin >> a >> b;
//-2代表障碍,无法通过
dist[a][b] = -2;
}
while(!Q.empty()){
PII cur = Q.front();
Q.pop();
for(int i = 0; i < 4; i ++){
int newr = cur.first + fx[i][0];
int newc = cur.second + fx[i][1];
if(newr >= 1 && newr <= n && newc >= 1 && newc <= n && dist[newr][newc] == -1){
dist[newr][newc] = dist[cur.first][cur.second] + 1;
Q.push(PII(newr, newc));
}
}
}
for(int i = 0; i < k; i ++)
ans += arr[i].c * dist[arr[i].a][arr[i].b];
cout << ans << endl;
return 0;
}
代码:
#include
#include
#include
using namespace std;
typedef long long LL;
const int N = 130, MOD = 1e9 + 7;
LL n;
int m;
int w[N][N];
// 这里将原 n * m 方格 看为 m * n 方格, 便于理解
// x 为 当前列状态, y 为 下一列状态, u 为当前列枚举到的方格 index
void dfs(int x, int y, int u) {
if (u == m) w[x][y] ++ ;
else if (x >> u & 1) dfs(x, y, u + 1);
else {
// 由于 列 从左往右, u(行) 从下往上 枚举, 因此共有四种转移方式
if (u && !(y >> u & 1) && !(y >> u - 1 & 1))
dfs(x, y + (1 << u) + (1 << u - 1), u + 1);
if (u + 1 < m && !(y >> u & 1) && !(y >> u + 1 & 1))
dfs(x, y + (1 << u) + (1 << u + 1), u + 1);
if (u + 1 < m && !(x >> u + 1 & 1)) {
if (!(y >> u & 1)) dfs(x, y + (1 << u), u + 2);
if (!(y >> u + 1 & 1)) dfs(x, y + (1 << u + 1), u + 2);
}
}
}
// 矩阵乘法模板
void mul(int c[][N], int a[][N], int b[][N]) {
static int tmp[N][N];
memset(tmp, 0, sizeof tmp);
for (int i = 0; i < 1 << m; i ++ )
for (int j = 0; j < 1 << m; j ++ )
for (int k = 0; k < 1 << m; k ++ )
tmp[i][j] = (tmp[i][j] + (LL)a[i][k] * b[k][j]) % MOD;
memcpy(c, tmp, sizeof tmp);
}
int main() {
cin >> n >> m;
// 构造转移矩阵
for (int i = 0; i < 1 << m; i ++ )
dfs(i, 0, 0);
int res[N][N] = {
0};
res[0][(1 << m) - 1] = 1;
// 快速幂
while (n) {
if (n & 1) mul(res, res, w);
mul(w, w, w);
n >>= 1;
}
cout << res[0][(1 << m) - 1] << endl;
return 0;
}