やったこと
合計を計算するため、accumulate を使ってみます。
確認環境
$ g++ --version
g++ (Homebrew GCC 9.2.0) 9.2.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
調査
test.cpp
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
// 配列
int A[] = {1, 3, 5};
cout << accumulate(A, A + 3, 0) << endl;
cout << accumulate(A, A + 3, -2) << endl;
// ベクター
vector<int> B = {2, 4, 8};
cout << accumulate(B.begin(), B.end(), 0) << endl;
cout << accumulate(B.begin(), B.end(), -3) << endl;
}
出力結果
9
7
14
11