• POJ2566 ZOJ1964 Bound Found【前缀和+排序+尺取法】


    Time Limit: 5000MS   Memory Limit: 65536K
    Total Submissions: 4085   Accepted: 1266   Special Judge

    Description

    Signals of most probably extra-terrestrial origin have been received and digitalized by The Aeronautic and Space Administration (that must be going through a defiant phase: "But I want to use feet, not meters!"). Each signal seems to come in two parts: a sequence of n integer values and a non-negative integer t. We'll not go into details, but researchers found out that a signal encodes two integer values. These can be found as the lower and upper bound of a subrange of the sequence whose absolute value of its sum is closest to t. 

    You are given the sequence of n integers and the non-negative target t. You are to find a non-empty range of the sequence (i.e. a continuous subsequence) and output its lower index l and its upper index u. The absolute value of the sum of the values of the sequence from the l-th to the u-th element (inclusive) must be at least as close to t as the absolute value of the sum of any other non-empty range.

    Input

    The input file contains several test cases. Each test case starts with two numbers n and k. Input is terminated by n=k=0. Otherwise, 1<=n<=100000 and there follow n integers with absolute values <=10000 which constitute the sequence. Then follow k queries for this sequence. Each query is a target t with 0<=t<=1000000000.

    Output

    For each query output 3 numbers on a line: some closest absolute sum and the lower and upper indices of some range where this absolute sum is achieved. Possible indices start with 1 and go up to n.

    Sample Input

    5 1
    -10 -5 0 5 10
    3
    10 2
    -9 8 -7 6 -5 4 -3 2 -1 0
    5 11
    15 2
    -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
    15 100
    0 0
    

    Sample Output

    5 4 4
    5 2 8
    9 1 1
    15 1 15
    15 1 15
    

    Source



    问题链接POJ2566 ZOJ1964 Bound Found

    题意简述给出一个整数序列,求其子序列之和最接近所给定的t,输出该子序列和及两端序号。

    问题分析

    序列的各个元素有正有负,事情比较麻烦一些。

    需要先计算前缀和。两个前缀和的差即为一个子序列的和。

    把前缀和及其下标进行排序,就可以用尺取法(序列前缀和单调递增才可以使用)来求最接近的子序列和的值及两端的序号。

    程序说明(略)


    AC的C++语言程序如下:

    /* POJ2566 ZOJ1964 Bound Found */
    
    #include <iostream>
    #include <algorithm>
    #include <limits.h>
    #include <stdio.h>
    
    using namespace std;
    
    const int N = 100000;
    pair<int, int> prefixsum[N+1];
    
    void find(int t, int n)
    {
        int delta = INT_MAX;
        int left, right, ans;
        int start=0, end=1, sum;
    
        while(end <= n && delta) {
            sum = prefixsum[end].first - prefixsum[start].first;
            if(abs(sum - t) < delta) {
                delta = abs(sum - t);
    
                ans = sum;
                left = prefixsum[start].second;
                right = prefixsum[end].second;
            }
            if(sum < t)
                end++;
            if(sum > t)
                start++;
            if(start == end)
                end++;
        }
    
        if(left > right) {
            sum = left;
            left = right;
            right = sum;
        }
    
        printf("%d %d %d
    ", ans, left+1, right);
    }
    
    int main()
    {
        int n, k, a, sum, t;
    
        while(scanf("%d%d", &n, &k) != EOF && (n || k)) {
            prefixsum[0] = make_pair(0, 0);
    
            sum = 0;
            for(int i=1; i<=n; i++) {
                scanf("%d", &a);
    
                sum += a;
                prefixsum[i] = make_pair(sum, i);
            }
    
            sort(prefixsum, prefixsum + n + 1);
    
            while(k--) {
                scanf("%d", &t);
                find(t, n);
            }
        }
    
        return 0;
    }




  • 相关阅读:
    【转载】Visual Studio2017中如何设置解决方案中的某个项目为启动项目
    【转载】通过百度站长平台提交网站死链
    【转载】通过搜狗站长平台提交网站域名变更后的文章地址
    【转载】通过搜狗站长平台手动向搜狗搜索提交死链
    【转载】通过搜狗站长平台手动向搜狗搜索提交文章加快收录
    【转载】Visual Studio中WinForm窗体程序如何切换.NET Framework版本
    【转载】Visual Studio2017如何设置打包发布的WinForm应用程序的版本号
    【转载】通过搜狗站长平台查看网站的搜狗流量及搜索关键字
    【转载】Visual Studio2017如何打包发布Winform窗体程序
    【转载】通过百度站长平台查看网站搜索流量及关键字
  • 原文地址:https://www.cnblogs.com/tigerisland/p/7563663.html
Copyright © 2020-2023  润新知