fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n;
  6.  
  7. cin >> n;
  8. string s, t;
  9.  
  10. set<string> ss;
  11. while(n--) {
  12. cin >> s >> t;
  13. ss.insert(s + t);
  14. }
  15.  
  16. cout << ss.size();
  17. }
  18.  
Success #stdin #stdout 0.01s 5512KB
stdin
5
birch yellow
maple red
birch yellow
maple yellow
maple green
stdout
4