fork download
  1. #include <iostream>
  2. #include <cstring>
  3. using namespace std;
  4.  
  5. const int TEN = 10;
  6. const int MAX_SIZE = 10000;
  7. int workerHours[MAX_SIZE + 1];
  8.  
  9. int main() {
  10. int numberOfLines, maxHours = -1, workerWithMaxHours = -1;
  11. cin >> numberOfLines;
  12. cin.ignore();
  13. for (int i = 0; i < numberOfLines; ++i) {
  14. char line[MAX_SIZE];
  15. cin.getline(line, MAX_SIZE);
  16. int workerId = 0, hours = 0, numbersFound = 0;
  17. for (int j = 0; line[j] != '\0'; ++j) {
  18. if (line[j] >= '0' && line[j] <= '9') {
  19. int number = 0;
  20. while (line[j] >= '0' && line[j] <= '9') {
  21. number = number * TEN + (line[j] - '0');
  22. ++j;
  23. }
  24. if (numbersFound == 0) {
  25. workerId = number;
  26. ++numbersFound;
  27. } else if (numbersFound == 1) {
  28. hours = number;
  29. ++numbersFound;
  30. }
  31. }
  32. }
  33. workerHours[workerId] += hours;
  34. if (workerHours[workerId] > maxHours) {
  35. maxHours = workerHours[workerId];
  36. workerWithMaxHours = workerId;
  37. } else if (workerHours[workerId] == maxHours && workerId < workerWithMaxHours) {
  38. workerWithMaxHours = workerId;
  39. }
  40. }
  41. cout << workerWithMaxHours;
  42. return 0;
  43. }
Success #stdin #stdout 0.01s 5296KB
stdin
5
Muncitorul 1 a muncit 10 ore
Muncitorul 23 a muncit 5 ore
Muncitorul 3 a muncit 3 ore
Muncitorul 23 a muncit 11 ore
Muncitorul 1 a muncit 2 ore
stdout
23