본문 바로가기

알고리즘/BOJ

10282번

10282번 - 해킹


양의 가중치를 갖는 그래프에서 최단거리를 구하는 것과 똑같은 문제이다.


따라서 다익스트라 알고리즘을 사용하여 문제를 풀 수 있다.


<정답 코드>


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
#include<iostream>
#include<vector>
#include<queue>
 
using namespace std;
const int INF = 987654321;
int main()
{
    int tc;
    scanf("%d"&tc);
    while (tc--)
    {
        int n, d, c;
        scanf("%d %d %d"&n, &d, &c);
        vector<vector<pair<int,int>>> v(n+1);
        vector<int> dist(n + 1,INF);
        for (int i = 0; i < d; i++)
        {
            int x,y,z;
            scanf("%d %d %d"&x, &y, &z);
            v[y].push_back({ x,z });
        }
 
        priority_queue<pair<intint>> q;
        dist[c] = 0;
        q.push({ c,dist[c] });
 
        while (!q.empty())
        {
            int now = q.top().first;
            int cost = q.top().second;
            q.pop();
 
            if (cost > dist[now]) { continue; };
 
            for (int i = 0; i < v[now].size(); i++)
            {
                int next = v[now][i].first;
                int w = v[now][i].second;
                if (dist[next] > cost + w)
                {
                    dist[next] = cost + w;
                    q.push({ next,dist[next] });
                }
            }
            
        }
        int cnt = 0;
        int ans = 0;
        for (int i = 1; i <= n; i++)
        {
            if (dist[i] < INF)
            {
                cnt++;
                ans = ans < dist[i] ? dist[i] : ans;
            }
 
        }
 
        printf("%d %d\n", cnt, ans);
 
    }
 
    return 0;
}
cs


반응형

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

5719번  (1) 2018.01.06
2211번  (0) 2018.01.04
6593번  (0) 2018.01.04
4485번  (0) 2018.01.04
1261번  (0) 2018.01.04