日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

codeforces #274 C. Riding in a Lift dp+前缀和优化

發布時間:2024/1/17 编程问答 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 codeforces #274 C. Riding in a Lift dp+前缀和优化 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

codeforces #274 ?C. Riding in a Lift ? dp+前綴和優化

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).

Sample test(s) input 5 2 4 1 output 2 input 5 2 4 2 output 2 input 5 3 4 1 output 0 Note

Two sequences?p1,?p2,?...,?pk?and?q1,?q2,?...,?qk?are?distinct, if there is such integer?j?(1?≤?j?≤?k), that?pj?≠?qj.

Notes to the samples:

  • In the first sample after the first trip you are either on floor?1, or on floor?3, because?|1?-?2|?<?|2?-?4|?and?|3?-?2|?<?|2?-?4|.
  • In the second sample there are two possible sequences:?(1,?2);?(1,?3). You cannot choose floor?3?for the first trip because in this case no floor can be the floor for the second trip.
  • In the third sample there are no sought sequences, because you cannot choose the floor for the first trip.
  • dp[i][j]表示第i步到達第j層的種數。

    dp[i][j]=∑ dp[i-1][l] ? ?(abs(l-j)<dp(l-b)) ?即從第l層轉移到第j層。

    直接轉移是n^3。由于abs(l-j)<dp(l-b)限制了l的范圍,且范圍是連續的,因此可以用前綴和維護。

    #include<bits/stdc++.h> #define REP(i,a,b) for(int i=a;i<=b;i++) #define MS0(a) memset(a,0,sizeof(a))using namespace std;typedef long long ll; const int INF=(1<<29); const int maxn=5010;const ll p=1000000007; ll n,a,b,k; ll dp[maxn][maxn]; ll sum[maxn];int main() {freopen("in.txt","r",stdin);while(cin>>n>>a>>b>>k){MS0(dp);for(int i=1;i<=n;i++) dp[1][i]=(abs(a-i)<abs(a-b))&&(i!=a);sum[0]=0;for(int i=1;i<=n;i++) sum[i]=(sum[i-1]+dp[1][i])%p;for(int i=2;i<=k;i++){for(int j=1;j<=n;j++){if(j<b){dp[i][j]=(dp[i][j]+(sum[(b+j-1)/2]-sum[0]-(sum[j]-sum[j-1])+3*p)%p)%p;}else if(j>b){dp[i][j]=(dp[i][j]+(sum[n]-sum[(b+j)/2]-(sum[j]-sum[j-1])+3*p)%p)%p;}}for(int j=1;j<=n;j++){sum[j]=(sum[j-1]+dp[i][j]%p)%p;}}ll ans=0;for(int i=1;i<=n;i++){ans=(ans%p+dp[k][i]%p)%p;}cout<<ans<<endl;}return 0; } View Code

    ?

    轉載于:https://www.cnblogs.com/--560/p/4755401.html

    總結

    以上是生活随笔為你收集整理的codeforces #274 C. Riding in a Lift dp+前缀和优化的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。