Advertisement
matheus_monteiro

B - Organização de Gemas Mágicas

Apr 5th, 2025
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. #include "bits/stdc++.h"
  2.  
  3. using namespace std;
  4.  
  5. string s;
  6. map<char, int> mapa;
  7.  
  8. bool comparar_letras(char a, char b) {
  9.     return mapa[a] < mapa[b];
  10. }
  11.  
  12. int main() {
  13.     cin >> s;
  14.  
  15.     // s = "abaaac";
  16.     // mapa[a] = 0
  17.     // mapa[b] = 1
  18.     // mapa[c] = 5
  19.     // mapa[a] < mapa[b]
  20.  
  21.    
  22.     for(int i = 0; i < s.size(); ++i) {
  23.         if(mapa.find(s[i]) == mapa.end()) {
  24.             mapa[s[i]] = i;
  25.         }
  26.     }
  27.  
  28.     // for(auto it : mapa) {
  29.     //     cout << it.first << ' ' << it.second << endl;
  30.     // }
  31.  
  32.  
  33.     sort(s.begin(), s.end(), comparar_letras);
  34.  
  35.     cout << s << endl;
  36.  
  37.     return 0;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement