-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path119.cpp
94 lines (81 loc) · 2.46 KB
/
119.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
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <map>
#include <vector>
typedef struct
{
char name[0xF];
int debit;
} person_t;
person_t persons[10];
int main(int argc, char const *argv[])
{
person_t* person;
std::map<std::string, person_t*> persons_links;
char line[0xFF];
int num_persons;
char *p, *p2;
int i, amount, num_gifted_persons, amount_per_person;
int counter;
counter = 0;
while(fgets(line, 0xFF, stdin))
{
persons_links.clear();
memset(persons, 0, sizeof(person_t) * 10);
num_persons = atoi(line);
if(num_persons == 0) {
printf("\n");
continue;
}
if(!fgets(line, 0xFF, stdin))
return 1;
if(++counter > 1)
printf("\n");
i = 0;
p = strtok(line, " ");
if(p[strlen(p) - 1] == '\n')
p[strlen(p) - 1] = '\0';
strcpy(persons[i].name, p);
persons_links.insert(std::pair<std::string, person_t*>(std::string(p), &persons[i]));
while((p = strtok(NULL, " ")) != NULL)
{
if(p[strlen(p) - 1] == '\n')
p[strlen(p) - 1] = '\0';
strcpy(persons[++i].name, p);
persons_links.insert(std::pair<std::string, person_t*>(std::string(p), &persons[i]));
}
i = num_persons;
while(i--)
{
if(!fgets(line, 0xFF, stdin))
return 1;
p = &line[0];
while(*p && *p != ' ') ++p;
*p = '\0'; ++p;
person = persons_links.find(std::string(line))->second;
amount = atoi(p);
if(amount == 0)
continue;
while(*p && *p != ' ') ++p;
*p = '\0'; ++p;
num_gifted_persons = atoi(p);
if(num_gifted_persons == 0)
continue;
amount_per_person = amount / num_gifted_persons;
person->debit -= amount_per_person * num_gifted_persons;
while(*p && *p != ' ') ++p;
*p = '\0'; ++p;
while(num_gifted_persons-- > 0)
{
p2 = p;
while(*p && *p != ' ' && *p != '\n') ++p;
*p = '\0'; ++p;
persons_links.find(std::string(p2))->second->debit += amount_per_person;
}
}
for(i = 0; i < num_persons; ++i)
printf("%s %d\n", persons[i].name, persons[i].debit);
}
return 0;
}