ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Sock Merchant
    해커랭크(HackerRank) 2018. 8. 19. 17:34
    반응형


    1. 문제


    2. 알고리즘

    키워드 - 구현


    3. 코드


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    #include <bits/stdc++.h>
     
    using namespace std;
     
    int sockMerchant(int n, vector <int> ar) {
        // Complete this function
        
        map<intint> m;
     
        for(int i = 0; i < n; i++) {
            //cout << ar[i] << endl;
            m[ar[i]]++;
        }
     
        map<intint>::iterator iter;
     
        int sol = 0;
        for(iter = m.begin(); iter != m.end(); ++iter) {
     
            //cout << iter->first << " " << iter->second << endl;
     
            int value = iter->second ;
            if(value >= 2) {
                int cand = iter->second / 2;
                sol = sol + cand;
            }
        }
     
        return sol;
    }
     
    int main() {
        int n;
        cin >> n;
        vector<int> ar(n);
        for(int ar_i = 0; ar_i < n; ar_i++){
           cin >> ar[ar_i];
        }
        int result = sockMerchant(n, ar);
        cout << result << endl;
        return 0;
    }
    cs

    반응형

    '해커랭크(HackerRank)' 카테고리의 다른 글

    Migratory Birds  (0) 2018.08.19
    Bon Appétit  (0) 2018.08.19
    Cats and a Mouse  (0) 2018.08.19
    Picking Numbers  (0) 2018.08.19
    Designer PDF Viewer  (0) 2018.08.19

    댓글

Designed by Tistory.