CF1238C. Standard Free2play(模拟)

Standard Free2play

直接模拟就行:
有两个挡板分别在100,50的位置,那么就可以一步步的跳到51的位置
现在来到了51的位置,50有个挡板,如果49的位置有挡板,那么可以直接跳到49
如果下一个挡板在45的位置,从51跳下会嗝屁,氪金大法,在50的位置开个挂,跳到50
一步步的走就行了
复杂度O(n)

Code:

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define mem(a, b) memset(a, b, sizeof(a));
#define lowbit(x) (x & -x)
#define lrt nl, mid, rt << 1
#define rrt mid + 1, nr, rt << 1 | 1
template <typename T>
inline void read(T& t) {
    t = 0;
    int f = 1;
    char ch = getchar();
    while (!isdigit(ch)) {
        if (ch == '-')
            f = -1;
        ch = getchar();
    }
    while (isdigit(ch)) {
        t = t * 10 + ch - '0';
        ch = getchar();
    }
    t *= f;
}
const int dx[] = {0, 1, 0, -1};
const int dy[] = {1, 0, -1, 0};
const ll Inf = 0x7f7f7f7f7f7f7f7f;
const int inf = 0x7f7f7f7f;
const double eps = 1e-5;
const double Pi = acos(-1);
const int maxn = 2e5 + 5;

int an[maxn];

int main(void) {
    int T;
    read(T);
    while (T--) {
        int n, m;
        read(n), read(m);
        for (int i = 1; i <= m; i++)
            read(an[i]);
        an[m + 1] = 0;
        an[m + 2] = -1;
        int pos = n, ans = 0;
        for (int i = 2; i <= m + 1; i++) {
            if (an[i] >= pos)
                continue;
            pos = an[i] + 1;
            if (an[i + 1] == an[i] - 1)
                pos = an[i + 1];
            else {
                ans++;
                pos = an[i];
            }
        }
        printf("%d\n", ans);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值