-
Notifications
You must be signed in to change notification settings - Fork 0
/
carteiro.cpp
executable file
·49 lines (37 loc) · 938 Bytes
/
carteiro.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
#include <bits/stdc++.h>
using namespace std;
int main(void){
int total_casas, total_encomendas;
cin >> total_casas;
cin >> total_encomendas;
// Recebendo número das casas.
long long int num_casas[total_casas];
int i;
for (i = 0; i < total_casas; i++){
cin >> num_casas[i];
}
// Recebendo ordem das entregas
long long int ordem[total_encomendas];
for (i = 0; i < total_encomendas; i++){
cin >> ordem[i];
}
long int tempo_total = 0;
int andou = 0;
long int posicao_atual = 1;
int j=0;
for (i = 0; i < total_encomendas; i++){
andou = 0;
while(ordem[i] != num_casas[j]){
if(ordem[i] > num_casas[j]){
j++;
}
else{
j--;
}
andou++;
}
tempo_total = tempo_total + andou;
}
cout << tempo_total << '\n';
return 0;
}