hdu 5063 Operation the Sequence(模拟)

582 篇文章 0 订阅
22 篇文章 0 订阅

题目链接:hdu 5063 Operation the Sequence

题目大意:4种操作,见题目。

解题思路:因为询问只有50次,所以每次碰到询问的时候,就去模拟一下,查哪个位置,就倒着推回去。

#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

typedef long long ll;

const ll mod = 1000000007;
const int maxn = 1e5+5;

int N, M, T, P[maxn];

int pow_mod(ll x, int n) {
    ll ret = 1;
    while (n) {
        if (n&1)
            ret = ret * x % mod;
        x = x * x % mod;
        n >>= 1;
    }
    return ret;
}

int query(int n, int pos) {
    int c = 1;
    for (int i = n - 1; i; i--) {
        if (P[i] == 1) {
            if (pos <= T)
                pos = pos * 2 - 1;
            else
                pos = (pos - T) * 2;
        } else if (P[i] == 2)
            pos = N - pos + 1;
        else if (P[i] == 3)
             c = (c + c) % (mod - 1);
    }
    return pow_mod(pos, c);
}

int main () {
    int cas;
    scanf("%d", &cas);
    while (cas--) {
        int x;
        char op[5];
        memset(P, 0, sizeof(P));

        scanf("%d%d", &N, &M);
        T = (N + 1) / 2;
        for (int i = 1; i <= M; i++) {
            scanf("%s%d", op, &x);
            if (op[0] == 'Q')
                printf("%d\n", query(i, x));
            else
                P[i] = x;
        }
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值