fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. map<string, int> dict;
  6. vector<string> rdict;
  7. int N, M;
  8. cin >> N >> M;
  9. for(int i = 0; i < M; i++) {
  10. string parent, child;
  11. int pi, ci;
  12. cin >> parent >> child;
  13. if(dict.find(parent) != dict.end())
  14. pi = dict[parent];
  15. else {
  16. pi = dict[parent] = rdict.size();
  17. rdict.push_back(parent);
  18. }
  19. if(dict.find(child) != dict.end())
  20. ci = dict[child];
  21. else {
  22. ci = dict[child] = rdict.size();
  23. rdict.push_back(child);
  24. }
  25. }
  26. for(map<string, int>::iterator it = dict.begin(); it != dict.end(); it++)
  27. cout << it->first << " " << it->second << endl;
  28. for(int i = 0; i < rdict.size(); i++)
  29. cout << i << " " << rdict[i] << endl;
  30. return 0;
  31. }
Success #stdin #stdout 0.01s 5288KB
stdin
9 8
kalobatippus archeohippus
kalobatippus parahippus
parahippus merychippus
merychippus dinohippus
merychippus calippus
merychippus cormohipparion
dinohippus hippidion
dinohippus equus
kalobatippus equus
stdout
archeohippus 1
calippus 5
cormohipparion 6
dinohippus 4
equus 8
hippidion 7
kalobatippus 0
merychippus 3
parahippus 2
0 kalobatippus
1 archeohippus
2 parahippus
3 merychippus
4 dinohippus
5 calippus
6 cormohipparion
7 hippidion
8 equus