#include #include #include #include #include using namespace std; const int N = 5050; int n,m; int dp[N]; int ans[N]; int getint() { int res=0; char ch=getchar(); while(ch<'0' || ch>'9') ch=getchar(); while('0'<=ch && ch<='9') { res=res*10+ch-'0'; ch=getchar(); } return res; } void Init() { int i,j; for(i=1;i