-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10282.cpp
61 lines (56 loc) · 1.29 KB
/
10282.cpp
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
//
// Created by kdongha on 2019/12/12.
//
#include <bits/stdc++.h>
int tc, n, d, c, cnt, t;
struct spread {
int target;
int time;
};
std::vector<spread> vec[10005];
bool seven[10005];
std::priority_queue<spread> pq;
bool operator<(const spread &s1, const spread &s2) {
return s1.time > s2.time;
}
void solve() {
std::cin >> tc;
while (tc--) {
std::cin >> n >> d >> c;
for (int i = 1; i <= n; i++) {
vec[i].clear();
seven[i] = false;
}
for (int i = 0; i < d; i++) {
int a, b, s;
std::cin >> a >> b >> s;
vec[b].push_back({a, s});
}
cnt = 1;
t = 0;
seven[c] = true;
for (auto s:vec[c]) {
pq.push(s);
}
while (!pq.empty()) {
spread s = pq.top();
pq.pop();
if (!seven[s.target]) {
cnt++;
t = s.time;
seven[s.target] = true;
for (auto next:vec[s.target]) {
pq.push({next.target, next.time + s.time});
}
}
}
std::cout << cnt << " " << t << "\n";
}
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
solve();
return 0;
}