zoukankan      html  css  js  c++  java
  • B

    https://vjudge.net/problem/CodeForces-474B/origin

    It is lunch time for Mole. His friend, Marmot, prepared him a nice game for lunch.

    Marmot brought Mole n ordered piles of worms such that i-th pile contains ai worms. He labeled all these worms with consecutive integers: worms in first pile are labeled with numbers 1 to a1, worms in second pile are labeled with numbers a1 + 1 to a1 + a2 and so on. See the example for a better understanding.

    Mole can't eat all the worms (Marmot brought a lot) and, as we all know, Mole is blind, so Marmot tells him the labels of the best juicy worms. Marmot will only give Mole a worm if Mole says correctly in which pile this worm is contained.

    Poor Mole asks for your help. For all juicy worms said by Marmot, tell Mole the correct answers.

    Input

    The first line contains a single integer n (1 ≤ n ≤ 105), the number of piles.

    The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 103a1 + a2 + ... + an ≤ 106), where ai is the number of worms in the i-th pile.

    The third line contains single integer m (1 ≤ m ≤ 105), the number of juicy worms said by Marmot.

    The fourth line contains m integers q1, q2, ..., qm (1 ≤ qi ≤ a1 + a2 + ... + an), the labels of the juicy worms.

    Output

    Print m lines to the standard output. The i-th line should contain an integer, representing the number of the pile where the worm labeled with the number qi is.

    Examples

    Input
    5
    2 7 3 4 9
    3
    1 25 11
    Output
    1
    5
    3

    Note

    For the sample input:

    • The worms with labels from [12] are in the first pile.
    • The worms with labels from [39] are in the second pile.
    • The worms with labels from [1012] are in the third pile.
    • The worms with labels from [1316] are in the fourth pile.
    • The worms with labels from [1725] are in the fifth pile.

    判断该标号的物品在哪一段

    OT(附未通过代码 以便补题):

    #include <iostream>
    #include <cstdlib>
    #include <cmath>
    #include <iomanip>
    #include <cstring>
    
    using namespace std;
    
    int a[100005] = {0};
    int main()
    {
        int n = 0;
        cin >> n;
        int sum = 0 , add = 0;
        for(int i = 0;i<n;i++)
        {
            cin >> add;
            sum += add;
            a[i] = sum;
        }
        int m = 0;
        int test = 0;
        cin >> m;
        for(int i = 0;i<m;i++)
        {
            cin >> test;
            int p = n/2;
            if(test <= a[0])
            {
                cout << 1 << endl;
                continue;
            }
            while(1)
                if(test > a[p])
                {
                    p = (n+p)/2;
                    if(test > a[p-1] && test <= a[p])
                        break;
                    if(test > a[p] && test <= a[p+1])
                    {
                        p+=1;
                        break;
                    }
                }
                else
                {
                    p = p/2;
                    if(test > a[p-1] && test <= a[p])
                        break;
                    if(test > a[p] && test <= a[p+1])
                    {
                        p+=1;
                        break;
                    }
                }
            cout << p+1 << endl;
        }
    	return 0;
    }
    

      

    B - Worms

     

  • 相关阅读:
    实现Callable接口(了解即可)
    多线程模拟龟兔赛跑
    多线程操作同一个对象的例子(引出并发)
    实现Runnable和Thread类的区别(建议使用Runnable)
    Autel MaxiIM IM608:如何更新和一些评论
    VIDENT iSmart900自动多系统扫描工具OBDII支持ABS / SRS / EPB /传输诊断DPF再生/上油复位编码电池配置
    2019 Red PCB KESS V5.017:支持140协议
    V2018.5 MB SD C4功能和软件详细信息更新
    (已解决)FVDI 2018“连接到服务器.....失败”“打不开设备”
    燕化迷你ACDP程序FEM / BDC
  • 原文地址:https://www.cnblogs.com/SutsuharaYuki/p/13695695.html
Copyright © 2011-2022 走看看