Para resolver esse problema vamos primeiro gravar qual o valor da soma total do vetor.
A partir daí vamos percorrendo o vetor, mantendo a soma do até a posição atual. Quando chegar um momento em que , então chegamos na posição procurada no problema.
Código para melhor entendimento:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//solucao por Davi Gabriel | |
#include <bits/stdc++.h> | |
using namespace std; | |
int v[100100]; | |
int main() { | |
int n, total = 0, somaI = 0; | |
cin >> n; | |
for(int i = 0; i < n; ++i){ | |
cin >> v[i]; | |
total += v[i]; | |
} | |
for(int i = 0; i < n; ++i){ | |
somaI += v[i]; | |
if(somaI == total/2){ | |
cout << i + 1 << endl; | |
return 0; | |
} | |
} | |
} |