-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.cpp
45 lines (39 loc) · 1.02 KB
/
main.cpp
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
34
35
36
37
38
39
40
41
42
43
44
45
// Author : Qi Zhang
// Date : 2018-12-11
#include <bits/stdc++.h>
using namespace std;
vector<string> mysplit(string &s, char t){
vector<string> info;
string cur;
for(auto c: s){
if(c == t){
if(cur != "") info.push_back(cur);
cur = "";
}
else cur += c;
}
if(cur != "") info.push_back(cur);
return info;
}
int main()
{
string line;
while (getline(cin, line)) {
vector<string> tmp = mysplit(line, ';');
vector<int> nums;
int target = stoi(tmp[0]);
tmp = mysplit(tmp[1], ',');
for(auto c: tmp) nums.push_back(stoi(c));
int i = 0, j = 0, sums = 0, ans = INT_MAX;
while(j < nums.size()){
while(sums < target && j < nums.size()) sums += nums[j++];
while(sums >= target && i < j){
ans = min(ans, j-i);
sums -= nums[i++];
}
}
if(ans == INT_MAX) cout << "0" << endl;
else cout << ans << endl;
}
return 0;
}