codeforces479E
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 ymust 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).
Examples
5 2 4 1
2
5 2 4 2
2
5 3 4 1
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.
sol:非常水的dp,直接转移是n3的,但是智障选手比方说我写了数据结构优化(树状数组),可以做到n2logn,但是还是TLE了,然后想了一会发现自己脑抽了,直接差分就是n2了
然后悲伤的T了两发

#include <bits/stdc++.h>
using namespace std;
typedef int ll;
inline int read()
{
int s=;
bool f=;
char ch=' ';
while(!isdigit(ch))
{
f|=(ch=='-'); ch=getchar();
}
while(isdigit(ch))
{
s=(s<<)+(s<<)+(ch^); ch=getchar();
}
return (f)?(-s):(s);
}
#define R(x) x=read()
inline void write(int x)
{
if(x<)
{
putchar('-'); x=-x;
}
if(x<)
{
putchar(x+''); return;
}
write(x/);
putchar((x%)+'');
return;
}
#define W(x) write(x),putchar(' ')
#define Wl(x) write(x),putchar('\n')
const int N=,Mod=;
int n,a,b,m;
int dp[N][N];
inline void Ad(int &x,int y)
{
x+=y;
x-=(x>=Mod)?Mod:;
x+=(x<)?Mod:;
}
struct BIT
{
int S[N];
#define lowbit(x) ((x)&(-x))
inline void Init()
{
memset(S,,sizeof S);
}
inline void Ins(int x,int Val)
{
for(;x<=n;x+=lowbit(x))
{
Ad(S[x],Val);
}
}
inline void Updata(int l,int r,int Val)
{
Ins(l,Val); Ins(r+,-*Val);
}
inline int Que(int x)
{
int Sum=;
for(;x>;x-=lowbit(x))
{
Ad(Sum,S[x]);
}
return Sum;
}
}T;
int S[N];
int main()
{
int i,j,k;
R(n); R(a); R(b); R(m);
dp[a][]=;
for(i=;i<m;i++)
{
// T.Init();
for(j=;j<=n;j++) if(dp[j][i])
{
int oo=abs(j-b)-;
// if(max(1,j-oo)<=j-1) T.Updata(max(1,j-oo),j-1,dp[j][i]);
// if(j+1<=min(n,j+oo)) T.Updata(j+1,min(n,j+oo),dp[j][i]);
if(max(,j-oo)<=j-)
{
Ad(dp[max(,j-oo)][i+],dp[j][i]); Ad(dp[j-+][i+],-*dp[j][i]);
}
if(j+<=min(n,j+oo))
{
Ad(dp[j+][i+],dp[j][i]); Ad(dp[min(n,j+oo)+][i+],-*dp[j][i]);
}
}
for(j=;j<=n;j++) Ad(dp[j][i+],dp[j-][i+]);
// for(j=1;j<=n;j++) dp[j][i+1]=T.Que(j);
}
int ans=;
for(i=;i<=n;i++) Ad(ans,dp[i][m]);
Wl(ans);
return ;
}
/*
Input
5 2 4 1
Output
2 Input
5 2 4 2
Output
2 Input
5 3 4 1
Output
0 input
2222 1206 1425 2222
output
402572650 Input
5000 2500 1 5000
Output
898026985
*/
codeforces479E的更多相关文章
随机推荐
- 小程序多端框架全面测评:chameleon、Taro、uni-app、mpvue、WePY
摘要: 微信小程序开发技巧. 作者:coldsnap 原文:小程序多端框架全面测评 Fundebug经授权转载,版权归原作者所有. 最近前端届多端框架频出,相信很多有代码多端运行需求的开发者都会产生一 ...
- 前端入门17-JavaScript进阶之作用域
声明 本系列文章内容全部梳理自以下几个来源: <JavaScript权威指南> MDN web docs Github:smyhvae/web Github:goddyZhao/Trans ...
- 转:从输入url到显示网页发生了什么
在浏览器中输入url到显示网页主要包含两个部分: 网络通信和页面渲染 互联网内各网络设备间的通信都遵循TCP/IP协议,利用TCP/IP协议族进行网络通信时,会通过分层顺序与对方进行通信.分层由高到低 ...
- 利用Azure虚拟机安装Dynamics CRM 2016实例
关注本人微信和易信公众号: 微软动态CRM专家罗勇 ,回复181或者20151215可方便获取本文,同时可以在第一时间得到我发布的最新的博文信息,follow me! Dynamics CRM Ser ...
- Fragment与Activity的接口回调
这里说一个官方推荐的写法: private OnFragmentInteractionListener mListener; @Override public void onAttach(Contex ...
- Android studio,第一个生成,调用成功的jni(说多了都是泪)
0x01 序言: 泪从何处说起呢?其实很早以前就用过android studio写过c++,但是,但是一直没有成功生成过so文件,所以心中一直有一个纠结...为什么不成功呢... 直到今天,由于工作的 ...
- pip install PIL The _imagingft C module is not installed
需要先删除PIL再进行安装 sudo pip uninstall -y PIL 删除PIL相关文件夹:/usr/local/bin/pil , usr/lib/python2.7/dist-packa ...
- AngularJS学习之旅—AngularJS SQL(十二)
一.使用 PHP 从 MySQL 中获取数据 <div ng-app="myApp" ng-controller="customersCtrl"> ...
- LeetCode算法题-Employee Importance(Java实现)
这是悦乐书的第291次更新,第309篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第159题(顺位题号是690).定义员工信息的数据结构,其中包括员工的唯一ID,他的重要 ...
- LVS+Keepalived实现mysql的负载均衡
1 初识LVS:Linux Virtual Server 1.1 LVS是什么 LVS是Linux Virtual Server的简称,也就是Linux虚拟服务器, 是一个由章文嵩博士发起 ...