Peter's codebook A blog full of codes

POJ 3061 -- Subsequence

就是單純爬行法

傳送門

POJ3061

程式碼

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;

int main(void) {
    int T;
    vector<int> seq;
    cin >> T;
    while( T-- > 0) { // T approchs 0 OuO
        int n, S;
        cin >> n >> S;
        seq.clear();
        for (int i=0; i<n; ++i) {
            int temp; cin>>temp;
            seq.push_back(temp);
        }
        int i=0, j=0, crr=0, minLen=1e9;
        while (i<seq.size()) {
            if (j<seq.size() && crr<S) { // 有東西可以拿,而且現在 < 目標值
                crr+=seq[j++];
            } else { 
                crr-=(i<j)?seq[i++]:0; // 如果 subsequence 裡沒東西,不要移除   
            }
            if (crr>=S) // update
                minLen = min(minLen, j-i);
        }
        cout << (minLen==1e9?0:minLen) << endl;
    }
    return 0;
}
comments powered by Disqus