以下のプログラムで配列の範囲外エラーになってしまいます。問題点を教えていただきたいです。
nは1<=n<=100で、nの入力後に、n個の数が入力されます。
C++
1#include <bits/stdc++.h> 2 3int main(){ 4 int n,alice,bob,i,j,max=0,lastmax; 5 std::cin >> n; 6 std::vector<int> a(n); 7 for(i = 0;i < n;i++) 8 std::cin >> a.at(i); 9 for(i = 0;i < n;i++){ 10 if(i%2==0){ 11 max=0; 12 lastmax=0; 13 for(j = 0;j < n;i++){ 14 if(a.at(j)>max){ 15 max = a.at(j); 16 lastmax = j; 17 } 18 } 19 alice += max; 20 a.at(lastmax) = 0; 21 }else if(i%2==1){ 22 max=0; 23 lastmax=0; 24 for(j = 0;j < n;i++){ 25 if(a.at(j)>max){ 26 max = a.at(j); 27 lastmax = j; 28 } 29 } 30 bob += max; 31 a.at(lastmax) = 0; 32 } 33 } 34 std::cout << alice-bob << std::endl; 35}
エラーメッセージは
terminate called after throwing an instance of 'std::out_of_range'
what(): vector::_M_range_check: __n (which is 0) >= this->size() (which is 0)
です。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー