fork download
  1. #include <iostream>
  2. #include <cstring>
  3. #include <string>
  4. using namespace std;
  5.  
  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. string line;
  15. getline(cin, line);
  16. int workerId, hours;
  17. sscanf(line.c_str(), "Muncitorul %d a muncit %d ore", &workerId, &hours);
  18. workerHours[workerId] += hours;
  19. if (workerHours[workerId] > maxHours) {
  20. maxHours = workerHours[workerId];
  21. workerWithMaxHours = workerId;
  22. } else if (workerHours[workerId] == maxHours && workerId < workerWithMaxHours) {
  23. workerWithMaxHours = workerId;
  24. }
  25. }
  26. cout << workerWithMaxHours;
  27. return 0;
  28. }
Success #stdin #stdout 0.01s 5292KB
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