-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProblema_1061.cpp
105 lines (89 loc) · 2.35 KB
/
Problema_1061.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
@autor: Victor E. B. Rodrigues;
@data: 23/06/2021;
@nome: Tempo de um Evento;
*/
#include <bits/stdc++.h>
#include <vector>
#include <string>
using namespace std;
template<class T>
struct Vetor{
vector<T> vetor;
Vetor<T>& operator-(const Vetor<T> &vetor){
int size = this->vetor.size();
for(int i = 0; i < size; i++)
this->vetor[i] -= vetor.vetor[i];
return(*this);
}
};
vector<string> split(const string &str, const string &delimitador)
{
vector<string> vet;
int comeco = 0;
int fim = str.find(delimitador);
while (fim != -1) {
vet.push_back(str.substr(comeco, fim - comeco));
comeco = fim + delimitador.size();
fim = str.find(delimitador, comeco);
}
vet.push_back(str.substr(comeco, fim - comeco));
return vet;
}
vector<int> toIntVector(vector<string> vet){
vector<string>::iterator it = vet.begin();
vector<int> vetInteiro;
while(it != vet.end()){
int num = 0;
for(char i : *it)
num+= i-'0';
vetInteiro.push_back(num);
it++;
}
return vetInteiro;
}
void calculaTempoEvento(int diaInicial, int diaFinal, Vetor<int> &horarioInicial, Vetor<int> &horarioFinal, int &dias, Vetor<int> &horario){
dias = diaFinal - diaInicial;
horario = horarioFinal - horarioInicial;
vector<int>::reverse_iterator it = horario.vetor.rbegin();
while(it != horario.vetor.rend()){
if(it+1 == horario.vetor.rend()){
if(*it < 0){
dias--;
*it += 24;
}
}
else if(*it < 0){
*(it+1) -=1;
*it += 60;
}
it++;
}
}
void printaTempoEvento(int &dias, Vetor<int> &horario){
string arr[4] = {" dia(s)", " hora(s)", " minuto(s)", " segundo(s)"};
int cont = 0;
cout << dias << *(arr+cont++) << endl;
for(int i : horario.vetor)
cout << to_string(i) << *(arr+cont++) << endl;
}
int main(){
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(0);
string dia1, h1, dia2, h2;
getline(cin, dia1);
getline(cin, h1);
getline(cin, dia2);
getline(cin, h2);
string delimitadorHorario = " : ";
string d1 = dia1.substr(dia1.find(" "), dia1.length());
string d2 = dia2.substr(dia2.find(" "), dia2.length());
Vetor<int> horario1 = {toIntVector(split(h1, delimitadorHorario))};
Vetor<int> horario2 = {toIntVector(split(h2, delimitadorHorario))};
Vetor<int> horario;
int dias;
calculaTempoEvento(stoi(d1), stoi(d2), horario1, horario2, dias, horario);
printaTempoEvento(dias, horario);
return 0;
}