How to find a subsequence which it's sum satisfies requirements?

53 Views Asked by At

I'm looking for a way to search for the minimum subsequent size from a sequence that it's sum satisfies the minimum sum needed from the question.
Examples (take note the index started from 0):

arr[]={5, 1, 3, 5, 10, 7, 4, 9, 2, 8}  
sum = 15  

so the answer should be 2, because the minimum size of the subsequence is from

a[3]-a[4].  
arr[]={1, 2, 3, 4, 5}  
sum = 11  

so the answer should be 3, because the minimum size of the subsequence is from

a[2]-a[4].  

I tried to use a greedy method, with a code below:

#include <bits/stdc++.h>
using namespace std;
int main(){
    vector <int> sequence;

    int sequenceSize, sumAsked;
    cin>>sequenceSize>>sumAsked;
    
    int sum=0, count=sequenceSize, front=0, back=sequenceSize-1;

    for(int i=0; i<sequenceSize; i++){
        int j;
        cin>>j;
        sequence.push_back(j);
        sum+=j;
    }
    if(sum<sumAsked){
        cout<<0<<endl;
    }
    else{
        while(sum>sumAsked){
            if(sequence[front]>=sequence[back]){
                sum-=sequence[back];
                back--;
                count--;
            }
            else{
                sum-=sequence[front];
                front++;
                count--;
            }
        }
    cout<<count+1<<endl;
    }
}

The code seems to work on both test case, but it got wrong on the online judge. Is there any better code or method for me to work with?

1

There are 1 best solutions below

0
On BEST ANSWER

I have actually got an accepted answer on the judge, and it looked like this,

#include <bits/stdc++.h>
#define f first
#define s second

typedef long long int lli;
using namespace std;

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int sequenceSize, sumAsked, sum=0;
    cin>>sequenceSize>>sumAsked;
    vector <int> sequence;
    for(int i=0; i<sequenceSize; i++){
        int j;
        cin>>j;
        sequence.push_back(j);
        sum+=j;
    }
    if(sum<sumAsked) cout<<0<<endl; //whether to check it's possible or not to get the answer,
    else{                           //otherwise it prints 0
        vector <int> note;
        int currentPos=0, currentSum=0, count=0;
        int temp=sequence[currentPos];
        for(int i=0; i<sequenceSize; i++){
            currentSum+=sequence[i];    //here we add the sum one by one from the sequence
            count++;
            while(!(currentSum-temp<sumAsked)){ //here we reduce the size of the 'window'
                currentSum-=temp;               //until it's just enough to hold the sum
                count--;
                cur++;
                temp=sequence[cur];
                note.push_back(count); //to take note all possible 'window' size
            }
        }
        for(int i=0; i<note.size(); i++){
            count=min(count, note[i]); //to search the best possible minimum answer
        }
        cout<<count<<endl;
    }
    return 0;
}

I think it's possible, though, to not taking note all of the answer on a vector, but I think it's good enough already.