-
Notifications
You must be signed in to change notification settings - Fork 1
/
Problema_1131.cpp
55 lines (47 loc) · 1.3 KB
/
Problema_1131.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
46
47
48
49
50
51
52
53
54
55
/*
@autor: Victor E. B. Rodrigues;
@data: 05/07/2021;
@nome: Grenais;
*/
#include <bits/stdc++.h>
#include <map>
#include <vector>
#include <string>
using namespace std;
int soma(int array[], const int tamanho){
int soma = 0;
for(int i = 0; i < tamanho; i++)
soma += array[i];
return soma;
}
int main(){
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(0);
int golInter, golGremio, arr[3] = {0,0,0};
vector<int> golsInter, golsGremio;
map< string, vector<int> > timeGols = {
{"inter", golsInter},
{"gremio", golsGremio}
};
int continua = 1;
while(continua != 2){
cin >> golInter >> golGremio;
timeGols["inter"].push_back(golInter);
timeGols["gremio"].push_back(golGremio);
if(timeGols["inter"].at(timeGols["inter"].size()-1) > timeGols["gremio"].at(timeGols["gremio"].size()-1))
arr[0]++;
else if(timeGols["inter"].at(timeGols["inter"].size()-1) < timeGols["gremio"].at(timeGols["gremio"].size()-1))
arr[1]++;
else
arr[2]++;
cout << "Novo grenal (1-sim 2-nao)" << endl;
cin >> continua;
}
cout << soma(arr, 3) << " grenais" << endl
<< "Inter:" << arr[0] << endl
<< "Gremio:" << arr[1] << endl
<< "Empates:" << arr[2] << endl
<< ((arr[0] > arr[1]) ? "Inter venceu mais" : (arr[0] < arr[1]) ? "Gremio venceu mais" : "Nao houve vencedor") << endl;
return 0;
}