劍指41和為s的連續整數序列
阿新 • • 發佈:2020-08-03
題目描述
小明很喜歡數學,有一天他在做數學作業時,要求計算出9~16的和,他馬上就寫出了正確答案是100。但是他並不滿足於此,他在想究竟有多少種連續的正數序列的和為100(至少包括兩個數)。沒多久,他就得到另一組連續正數和為100的序列:18,19,20,21,22。現在把問題交給你,你能不能也很快的找出所有和為S的連續正數序列? Good Luck!輸出描述:
輸出所有和為S的連續正數序列。序列內按照從小至大的順序,序列間按照開始數字從小到大的順序
//左神的思路,雙指標問題
//當總和小於sum,大指標繼續+
//否則小指標+
class
Solution {
public
:
vector<vector<
int
> > FindContinuousSequence(
int
sum) {
vector<vector<
int
> > allRes;
int
phigh = 2,plow = 1;
while
(phigh > plow){
int
cur = (phigh + plow) * (phigh - plow + 1) / 2;
if
( cur < sum)
phigh++;
if
( cur == sum){
vector<
int
> res;
for
(
int
i = plow; i<=phigh; i++)
res.push_back(i);
allRes.push_back(res);
plow++;
}
if
(cur > sum)
plow++;
}
return
allRes;
}
};