-
Notifications
You must be signed in to change notification settings - Fork 0
/
max.cpp
executable file
·65 lines (53 loc) · 1.34 KB
/
max.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
56
57
58
59
60
61
62
63
64
65
#include <iostream>
#include <vector>
#include <array>
using namespace std;
typedef vector<int> Ligne;
typedef vector<Ligne> Matrice;
int somme_consecutifs_max (Ligne ligne) {
int somme_actuelle (ligne[0]);
int somme_maximum (ligne[0]);
for (auto element : ligne){
somme_actuelle = somme_actuelle + element;
if (somme_actuelle > somme_maximum) {
somme_maximum = somme_actuelle;
somme_actuelle = 0;
}
}
return somme_maximum;
}
vector<size_t> lignes_max (Matrice entree){
vector<size_t> matrice_retour (1,0);
int somme_ligne_actuelle(0);
int somme_ligne_max(0);
for (size_t i(0); i < entree.size(); ++i) {
somme_ligne_actuelle = somme_consecutifs_max(entree[i]);
if (somme_ligne_max < somme_ligne_actuelle){
somme_ligne_max = somme_ligne_actuelle;
matrice_retour.clear();
}
if (somme_ligne_max == somme_ligne_actuelle){
matrice_retour.push_back(i);
}
}
return matrice_retour;
}
Matrice tranches_max(Matrice entree){
Matrice resultat;
for (auto numero_ligne : lignes_max(entree)){
Ligne ligne = entree[numero_ligne];
resultat.push_back(ligne);
}
return resultat;
}
int main () {
Matrice m = {{3,4,5},{0,0,1}};
Matrice max = tranches_max(m);
for (size_t i = 0; i < max.size(); i++)
{
for (size_t j = 0; j < max[i].size(); j++)
{
cout << max[i][j];
}
}
}