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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include <iostream>                                                             
#include <vector>                                                               
                                                                  
long ciag[500000];                                                              
long ciag_wystapien[500000];                                                    

int compare(const void* a, const void* b)                                       
{                                                                               
    const long* x = (long*) a;                                                  
    const long* y = (long*) b;                                                  
                                                                                


    if (*x > *y)                                                                
        return 1;                                                               
    else if (*x < *y)                                                           
        return -1;                                                              
                                                                                
    return 0;                                                                   
}                                                                               
int compare_odwr(const void* a, const void* b)                                  
{                                                                               
    const long* x = (long*) a;                                                  
    const long* y = (long*) b;                                                  
                                                                                
    if (*x < *y)                                                                
        return 1;                                                               
    else if (*x < *y)                                                           
        return -1;                                                              
    return 0;                                                                   
}                                                                               

                                                                           
                                                                                
int main()                                                                      
{                                                                               
                                                                                
    std::ios_base::sync_with_stdio(false);                                      
    std::cin.tie(NULL);                                                         
    std::cout.tie(NULL);                                                        
                                                                                
    long ile_wystapien=0;                                                             
    long poprzedni=0;                                                                 
    long ktory=0;
    long ile=0; 
    long i=0;                                                                         
    long liczba=0;   
    
                                                                              
    std::cin >> ile;                                                            
    for(i=0; i<ile; ++i)                                                        
    {                                                                           
        std::cin >> ciag[i];                                                    
    }                                                                           
    std::qsort(ciag, ile, sizeof(long), compare);                               
                                                                                
    poprzedni = ciag[0];                                                        
    for(i=0; i<ile; ++i)                                                        
    {                                                                           
        if(ciag[i]==poprzedni)                                                  
            ++ile_wystapien;                                                    
        else                                                                    
        {                                                                       
            ciag_wystapien[ktory++]=ile_wystapien;                              
            poprzedni = ciag[i];                                                
            ile_wystapien=1;                                                    
        }                                                                       
    }                                                                           
    ciag_wystapien[ktory++]=ile_wystapien;                                      
    ile_wystapien = ktory;                                                      
    std::qsort(ciag_wystapien, ile_wystapien, sizeof(long), compare_odwr);      
                                                                                
    long suma = 0;                                                              
    for(i=0; i<ile_wystapien; ++i)                                              
        suma+=ciag_wystapien[i];                                                
                                                                                
    long ktory_od_poczatku=0;                                                   
    long suma_liderow=0, suma_usunietych=0;                                     
    while(suma_liderow + suma_usunietych<suma)                                  
    {                                                                           
        suma_liderow += ciag_wystapien[ktory_od_poczatku];                      
        suma_usunietych += (ciag_wystapien[ktory_od_poczatku]-1);               
        ++ktory_od_poczatku;                                                    
    }                                                                           
    std:: cout << ktory_od_poczatku;                                            
    return 0;                                                                   
}