https://www.acmicpc.net/problem/8979

 

8979번: 올림픽

입력의 첫 줄은 국가의 수 N(1 ≤ N ≤ 1,000)과 등수를 알고 싶은 국가 K(1 ≤ K ≤ N)가 빈칸을 사이에 두고 주어진다. 각 국가는 1부터 N 사이의 정수로 표현된다. 이후 N개의 각 줄에는 차례대로 각 �

www.acmicpc.net

 

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
#include <iostream>
#include <algorithm>
 
struct country
{
    int gold;
    int silver;
    int copper;
    int number;
}countrys[1010];
 
int N, K;
 
bool cmp(country& first, country& second)
{
    if (first.gold == second.gold)
    {
        if (first.silver == second.silver)
        {
            return first.copper > second.copper;
        }
        else
        {
            return first.silver > second.silver;
        }
    }
    else
    {
        return first.gold > second.gold;
    }
}
 
void input()
{
    int nation;
    std::cin >> N >> K;
    for (int i = 1; i <= N; ++i)
    {
        std::cin >> countrys[i].number >> countrys[i].gold >> countrys[i].silver >> countrys[i].copper;
    }
}
 
void solve()
{
    std::sort(countrys + 1, countrys + N + 1, cmp);
    for (int i = 1; i <= N; ++i)
    {
        //std::cout << countrys[i].number << ' ' << countrys[i].gold << ' ' << countrys[i].silver << ' ' << countrys[i].copper << '\n';
        if (countrys[i].number == K)
        {
            int ans = i;
            while (countrys[ans].gold == countrys[ans - 1].gold &&
                countrys[ans].silver == countrys[ans - 1].silver &&
                countrys[ans].copper == countrys[ans - 1].copper)
            {
                --ans;
            }
            std::cout << ans;
            break;
        }
    }
}
 
int main()
{
    input();
    solve();
    return 0;
}
cs

 

정렬을 열심히 배웁시다 정렬은 나의 원수

 

strick week ordering에 주의합시다

'알고리즘' 카테고리의 다른 글

백준 5567 : 결혼식  (0) 2020.08.04
백준 1722 : 순열의 순서  (0) 2020.07.30
백준 1764 : 듣보잡  (0) 2020.07.22
백준 9517 : 아이 러브 크로아티아  (0) 2020.07.21
백준 14890 : 경사로  (0) 2020.07.17

+ Recent posts