CodeForces 479E E. Riding in a Lift

本文解析了CodeForces479E问题——乘坐电梯问题,该问题要求计算在给定楼层数、起始楼层、禁止进入楼层及行走次数的情况下,不进入特定楼层的有效行走路径数量。文章提供了一种使用前缀和方法来优化区间更新的解决方案,并附带完整的C++代码实现。

CodeForces 479E E. Riding in a Lift

题目

Imagine that you are in a building that has exactly n floors. You can move between the floors in a lift. Let’s number the floors from bottom to top with integers from 1 to n. Now you’re on the floor number a. You are very bored, so you want to take the lift. Floor number b has a secret lab, the entry is forbidden. However, you already are in the mood and decide to make k consecutive trips in the lift.

Let us suppose that at the moment you are on the floor number x (initially, you were on floor a). For another trip between floors you choose some floor with number y (y ≠ x) and the lift travels to this floor. As you cannot visit floor b with the secret lab, you decided that the distance from the current floor x to the chosen y must be strictly less than the distance from the current floor x to floor b with the secret lab. Formally, it means that the following inequation must fulfill: |x - y| < |x - b|. After the lift successfully transports you to floor y, you write down number y in your notepad.

Your task is to find the number of distinct number sequences that you could have written in the notebook as the result of k trips in the lift. As the sought number of trips can be rather large, find the remainder after dividing the number by 1000000007 (109 + 7).

Input
The first line of the input contains four space-separated integers n, a, b, k (2 ≤ n ≤ 5000, 1 ≤ k ≤ 5000, 1 ≤ a, b ≤ n, a ≠ b).

Output
Print a single integer — the remainder after dividing the sought number of sequences by 1000000007 (109 + 7).

题意

一个楼有N层,你起始在A层,有个神秘实验室在B层。假设你在x层,你能走到y层,满足 |x - y| < |x - b|. 你不能走到B层或者留在原地。一共走K次问有多少种走法。

解题思路

一个很简单的题,但是有一个关键点是每次需要更新一个区间,更新区间的操作用线段树让代码很大而且复杂度高,其实可以用前缀和的方法,当需要更新区间[l, r]时,只需要更新l和r+1处(分别+val和-val),这样求前缀和就是新的dp值,总复杂度为O(N^2).

代码

#include<bits/stdc++.h>

using namespace std;

const int SIZE = 5005;
const int MOD = 1000000007;
int N, A, B, K;

int dp[SIZE][SIZE];

void slv(int x, int l, int r, int d) {
    dp[x][l] += d;
    dp[x][l] %= MOD;
    dp[x][r] -= d;
    dp[x][r] = ( dp[x][r] + MOD ) % MOD;
}

int main() {
    scanf("%d %d %d %d", &N, &A, &B, &K);
    dp[0][A] = 1;
    for(int i = 0; i < K; i++) {
        for(int j = 1; j <= N; j++) {
            if(j == B) continue;
            int temp = abs(j - B) - 1;
            slv(i+1, max(j-temp, 1), j, dp[i][j]);
            slv(i+1, j+1, min(j+temp+1, N+1), dp[i][j]);
        }
        int cnt = 0;
        for(int j = 1; j <= N; j++) {
            cnt += dp[i+1][j];
            cnt %= MOD;
            dp[i+1][j] = cnt;
        }
    }
    int res = 0;
    for(int i = 1; i <= N; i++) {
        res += dp[K][i];
        res %= MOD;
    }
    printf("%d\n",res);
    return 0;
}
根据提供的引用内容,Codeforces Round 511 (Div. 1)是一个比赛的名称。然而,引用内容中没有提供与这个比赛相关的具体信息或问题。因此,我无法回答关于Codeforces Round 511 (Div. 1)的问题。如果您有关于这个比赛的具体问题,请提供更多的信息,我将尽力回答。 #### 引用[.reference_title] - *1* [Codeforces Round 860 (Div. 2)题解](https://blog.csdn.net/qq_60653991/article/details/129802687)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [Codeforces Round 867 (Div. 3)(A题到E题)](https://blog.csdn.net/wdgkd/article/details/130370975)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [Codeforces Round 872 (Div. 2)(前三道](https://blog.csdn.net/qq_68286180/article/details/130570952)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值