• PAT甲级——A1044 Shopping in Mars


    Shopping in Mars is quite a different experience. The Mars people pay by chained diamonds. Each diamond has a value (in Mars dollars M$). When making the payment, the chain can be cut at any position for only once and some of the diamonds are taken off the chain one by one. Once a diamond is off the chain, it cannot be taken back. For example, if we have a chain of 8 diamonds with values M$3, 2, 1, 5, 4, 6, 8, 7, and we must pay M$15. We may have 3 options:

    1. Cut the chain between 4 and 6, and take off the diamonds from the position 1 to 5 (with values 3+2+1+5+4=15).
    2. Cut before 5 or after 6, and take off the diamonds from the position 4 to 6 (with values 5+4+6=15).
    3. Cut before 8, and take off the diamonds from the position 7 to 8 (with values 8+7=15).

    Now given the chain of diamond values and the amount that a customer has to pay, you are supposed to list all the paying options for the customer.

    If it is impossible to pay the exact amount, you must suggest solutions with minimum lost.

    Input Specification:

    Each input file contains one test case. For each case, the first line contains 2 numbers: N (≤), the total number of diamonds on the chain, and M (≤), the amount that the customer has to pay. Then the next line contains N positive numbers D1​​DN​​ (Di​​103​​ for all ,) which are the values of the diamonds. All the numbers in a line are separated by a space.

    Output Specification:

    For each test case, print i-j in a line for each pair of i ≤ j such that Di + ... + Dj = M. Note that if there are more than one solution, all the solutions must be printed in increasing order of i.

    If there is no solution, output i-j for pairs of i ≤ j such that Di + ... + Dj > with (Di + ... + Dj −) minimized. Again all the solutions must be printed in increasing order of i.

    It is guaranteed that the total value of diamonds is sufficient to pay the given amount.

    Sample Input 1:

    16 15
    3 2 1 5 4 6 8 7 16 10 15 11 9 12 14 13
    

    Sample Output 1:

    1-5
    4-6
    7-8
    11-11
    

    Sample Input 2:

    5 13
    2 4 5 7 9
    

    Sample Output 2:

    2-4
    4-5

    【题意】

    给出一个数字序列与一个数S,在数字序列中求出所有和值为S的连续子序列(区间下标左端点小的先输出,左端点相同时右端点小的先输出)。若没有这样的序列,求出和值恰好大于S的子序列(即在所有和值大于S的子序列中和值最接近S)。假设序列下标从1开始。

     1 #include <iostream>
     2 #include <vector>
     3 using namespace std;
     4 //暴力解法,复杂度为O(N),没通过测试,超时
     5 int N, M;
     6 vector<int>value,sum;
     7 vector<pair<int, int>>res, minRes;//res存刚好切割值等于付款值,min存切割值为最小的
     8 void Way1()
     9 {
    10     int minV = M;
    11     for (int i = 1; i <= N; ++i)
    12     {
    13         int s = 0;
    14         for (int j = i; j <= N; ++j)
    15         {
    16             s += value[j];
    17             if (s < M)continue;
    18             else if (s == M)
    19                 res.push_back(make_pair(i, j));
    20             else if (s > M)
    21             {
    22                 if (minV == (s - M))
    23                     minRes.push_back(make_pair(i, j));
    24                 else if (minV > (s - M))
    25                 {
    26                     minV = s - M;
    27                     minRes.clear();
    28                     minRes.push_back(make_pair(i, j));
    29                 }
    30             }
    31             break;
    32         }
    33     }    
    34 }
    35 //方法二,使用二分法
    36 int upper_bound(int L, int &tempS)
    37 {
    38     int left = L, right = N, mid;
    39     while (left < right)
    40     {
    41         mid = (left + right) / 2;
    42         if (sum[mid]-sum[L-1] >= M)
    43             right = mid;
    44         else
    45             left = mid + 1;
    46     }
    47     tempS = sum[right] - sum[L - 1];
    48     return right;
    49 }
    50 
    51 void Way2()
    52 {
    53     int minV = sum[N], tempS;
    54     for (int i = 1; i <= N; ++i)//左端
    55     {
    56         int j = upper_bound(i, tempS);
    57         if (tempS >minV)continue;
    58         else if (tempS >= M)
    59         {
    60             if (tempS < minV)
    61             {
    62                 res.clear();
    63                 minV = tempS;
    64             }
    65             res.push_back(make_pair(i, j));
    66         }
    67     }
    68 }
    69 
    70 int main()
    71 {
    72     cin >> N >> M;
    73     value.resize(N + 1);
    74     sum.resize(N + 1);
    75     for (int i = 1; i <= N; ++i)
    76     {
    77         cin >> value[i];
    78         sum[i] = sum[i - 1] + value[i];
    79     }
    80     Way2();
    81     if (res.size() > 0)
    82         for (auto a : res)
    83             cout << a.first << "-" << a.second << endl;
    84     else
    85         for (auto a : minRes)
    86             cout << a.first << "-" << a.second << endl;
    87     return 0;
    88 }
  • 相关阅读:
    Hadoop2.x集群动态添加删除数据节点
    HDFS中块状态分析
    procedure of object(一个特殊的指针类型)
    设计模式导语一
    Delphi中的容器类(二)
    让AlphaControls改变DevExpress皮肤
    Delphi中的容器类(一)
    Delphi 的RTTI机制浅探
    重写AuthorizeAttribute实现自己的权限验证
    含有HttpContext元素的单元测试
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11261909.html
Copyright © 2020-2023  润新知