#define USECHRONO #undef HAVE_MPI #include "eval.hpp" #include #include #include #include #include using namespace aed; using namespace std; //---:---<*>---:---<*>- COMIENZA CODIGO FUNCION --:---<*>---:---<*>---:---<*> // COMPLETAR DNI y NOMBRE AQUI: // Nombre: Abreu Joaquin int DNI=40409118; int promedio(set &S){ auto it = S.begin(); int prom = 0; int cont = 0; while(it != S.end()){ prom = prom + *it; it++; cont++; } return prom/cont;; } bool prom_subc(set &S){ auto it = S.begin(); auto it2 = S.begin(); it2++; int prom = promedio(S); int cont = 0; for(size_t i=0;i(prom_subc,vrbs); return 0; }