Codeforces425C Sereja and Two Sequences

http://codeforces.com/problemset/problem/425/C
Sereja has two sequences a1, a2, …, an and b1, b2, …, bm, consisting of integers. One day Sereja got bored and he decided two play with them. The rules of the game was very simple. Sereja makes several moves, in one move he can perform one of the following actions:

Choose several (at least one) first elements of sequence a (non-empty prefix of a), choose several (at least one) first elements of sequence b (non-empty prefix of b); the element of sequence a with the maximum index among the chosen ones must be equal to the element of sequence b with the maximum index among the chosen ones; remove the chosen elements from the sequences.
Remove all elements of both sequences.
The first action is worth e energy units and adds one dollar to Sereja’s electronic account. The second action is worth the number of energy units equal to the number of elements Sereja removed from the sequences before performing this action. After Sereja performed the second action, he gets all the money that he earned on his electronic account during the game.

Initially Sereja has s energy units and no money on his account. What maximum number of money can Sereja get? Note, the amount of Seraja’s energy mustn’t be negative at any time moment.

Input
The first line contains integers n, m, s, e (1 ≤ n, m ≤ 105; 1 ≤ s ≤ 3·105; 103 ≤ e ≤ 104). The second line contains n integers a1, a2, …, an (1 ≤ ai ≤ 105). The third line contains m integers b1, b2, …, bm (1 ≤ bi ≤ 105).

Output
Print a single integer — maximum number of money in dollars that Sereja can get.

题意:两数列a[],b[],进行若干***作,每次操作花费e,将a的一个前缀和b的一个前缀(两前缀的最后一个数字必须相同)删除,并得到虚拟1元,最后的一次操作是将剩下的a[],b[]全部清空,花费是之前把a[],b[]删除的总数字个数,使得虚拟ans元变为真实ans元。

思路:看到这个应该明显是一个求LCS,并对于每一个f(i,j)判断一下是否花费小于等于s。但是复杂度nm=10^10没办法做。
朴素的LCS是f(i,j):a的前i个,b的前j个,构成的最长公共子序列长度。注意到这道题s/e最大只有300,也就是LCS长度最大只取300,那么我们改一下LCS的三个因素,设f(i,j):LCS长度为i,并且a取前j个,对应的b最少取前f(i,j)个,这个过程要用二分,这样复杂度就是300nlogn,差不多10^8,这样就解决了问题。
综上所述,这道题设f(i,j):得到i元钱,a取前j个,对应的b最少取前f(i,j)个。
f(i,j)=min{f(i,j-1),在f(i-1,j-1)之后查找到第一个等于a[j]的位置}

#include<bits/stdc++.h>
using namespace std;
#define maxn 100000+100
#define INF 0x3f3f3f3f

int n,m,s,e,a[maxn],b[maxn],ans;
vector<int> idx[maxn];
int f[305][maxn];

void debug()
{
    for(int i=1;i<=s/e;i++)
    {
        printf("%d:",i);
        for(int j=1;j<=n;j++)
        printf("[%d]=%d,",j,f[i][j]);
        puts("");
    }
}

int main()
{
    //freopen("input.in","r",stdin);
    cin>>n>>m>>s>>e;
    for(int i=1;i<=n;i++)scanf("%d",&a[i]);
    for(int j=1;j<=m;j++)scanf("%d",&b[j]),idx[b[j]].push_back(j);
    for(int i=1;i<=n;i++)idx[a[i]].push_back(INF);

    for(int i=1;i<=s/e;i++)f[i][0]=INF;
    memset(f[0],0,sizeof(f[0]));
    for(int i=1;i<=s/e;i++)
    {
        for(int j=1;j<=n;j++)
        {
            int k=lower_bound(idx[a[j]].begin(),idx[a[j]].end(),min(f[i-1][j-1]+1,INF))-idx[a[j]].begin();
            f[i][j]=min(idx[a[j]][k],f[i][j-1]);
            if(j+f[i][j]+i*e<=s)ans=i;
        }
    }   
    ///debug();
    cout<<ans<<endl;
    return 0; 
}
全部评论

相关推荐

收到了小米的实习offer,犹豫是否要去。。。
认真搞学习:雷总还当过首富呢,公司不算大厂算独角兽吗
点赞 评论 收藏
分享
避坑恶心到我了大家好,今天我想跟大家聊聊我在成都千子成智能科技有限公司(以下简称千子成)的求职经历,希望能给大家一些参考。千子成的母公司是“同创主悦”,主要经营各种产品,比如菜刀、POS机、电话卡等等。听起来是不是有点像地推销售公司?没错,就是那种类型的公司。我当时刚毕业,急需一份临时工作,所以在BOSS上看到了千子成的招聘信息。他们承诺无责底薪5000元,还包住宿,这吸引了我。面试的时候,HR也说了同样的话,感觉挺靠谱的。于是,我满怀期待地等待结果。结果出来后,我通过了面试,第二天就收到了试岗通知。试岗的内容就是地推销售,公司划定一个区域,然后你就得见人就问,问店铺、问路人,一直问到他们有意向为止。如果他们有兴趣,你就得摇同事帮忙推动,促进成交。说说一天的工作安排吧。工作时间是从早上8:30到晚上18:30。早上7点有人叫你起床,收拾后去公司,然后唱歌跳舞(销售公司都这样),7:55早课(类似宣誓),8:05同事间联系销售话术,8:15分享销售技巧,8:30经理训话。9:20左右从公司下市场,公交、地铁、自行车自费。到了市场大概10点左右,开始地推工作。中午吃饭时间大约是12:00,公司附近的路边盖饭面馆店自费AA,吃饭时间大约40分钟左右。吃完饭后继续地推工作,没有所谓的固定中午午休时间。下午6点下班后返回公司,不能直接下班,需要与同事交流话术,经理讲话洗脑。正常情况下9点下班。整个上班的一天中,早上到公司就是站着的,到晚上下班前都是站着。每天步数2万步以上。公司员工没有自己的工位,百来号人挤在一个20平方米的空间里听经理洗脑。白天就在市场上奔波,公司的投入成本几乎只有租金和工资,没有中央空调。早上2小时,晚上加班2小时,纯蒸桑拿。没有任何福利,节假日也没有3倍工资之类的。偶尔会有冲的酸梅汤和西瓜什么的。公司的晋升路径也很有意思:新人—组长—领队—主管—副经理—经理。要求是业绩和团队人数,类似传销模式,把人留下来。新人不能加微信、不能吐槽公司、不能有负面情绪、不能谈恋爱、不能说累。在公司没有任何坐的地方,不能依墙而坐。早上吃早饭在公司外面的安全通道,未到上班时间还会让你吃快些不能磨蹭。总之就是想榨干你。复试的时候,带你的师傅会给你营造一个钱多事少离家近的工作氛围,吹嘘工资有多高、还能吹自己毕业于好大学。然后让你早点来公司、无偿加班、抓住你可能不会走的心思进一步压榨你。总之,大家在找工作的时候一定要擦亮眼睛,避免踩坑!———来自网友
qq乃乃好喝到咩噗茶:不要做没有专业门槛的工作
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务