CodeForces474B - Worms - 暴力标记

Posted ofshk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces474B - Worms - 暴力标记相关的知识,希望对你有一定的参考价值。

题意:判断第二组数据在第一组数据的哪一堆中。

思路:
给当前连续的堆进行book标记,同一堆标记成一样的就可以了。
最后输出询问的数据所在book的位置。

AC代码:

#include <iostream>
#include <string.h>
#include <algorithm>
#include <cmath>
#include <map>

using namespace std;
typedef long long ll;

int book[1000200];

int main()
{
    int n,m;
    cin>>n;
    int k=1,kk=1,t=1;
    for(int i=0;i<n;i++)
    {
        int x;
        cin>>x;
        for(int j=1;j<=x;j++)
            book[t++]=k;
        k++;
    }
    cin>>m;
    for(int i=0;i<m;i++)
    {
        int x;
        cin>>x;
        cout<<book[x]<<endl;
    }
    return 0;
}


以上是关于CodeForces474B - Worms - 暴力标记的主要内容,如果未能解决你的问题,请参考以下文章

Binary Search474B

B. Worms1200 / 二分

Where Do Worms Go in Winter?

HDU3109: Worms(字符串变换类 DP)

[转]ORA-12560: TNS: 协议适配器错误

如何避免在类蠕虫游戏中每帧复制关卡 Surface?