This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const long long inf = 1e18;
void testcase(){
int N, M, S, T, L; long long K;
cin >> N >> M >> S >> T >> L >> K;
--S, --T;
vector<vector<pair<int, int>>> adj(N);
while(M--){
int u, v, w;
cin >> u >> v >> w;
--u, --v;
adj[u].emplace_back(v, w);
adj[v].emplace_back(u, w);
}
auto dijkstra = [&](int s){
vector<long long> d(N, inf);
d[s] = 0;
using node = pair<long long, int>;
priority_queue<node, vector<node>, greater<node>> pq;
pq.push({d[s], s});
while(!pq.empty()){
long long cur; int u;
tie(cur, u) = pq.top(); pq.pop();
for(auto [v, w] : adj[u]){
if(d[v] > d[u] + w){
d[v] = d[u] + w;
pq.push({d[v], v});
}
}
}
return d;
};
vector<long long> dS = dijkstra(S), dT = dijkstra(T);
if(dS[T] <= K){
cout << 1LL * N * (N - 1) / 2;
return;
}
vector<long long> vS, vT;
for(int i = 0; i < N; ++i){
vS.emplace_back(dS[i]);
vT.emplace_back(dT[i]);
}
sort(vS.begin(), vS.end());
sort(vT.begin(), vT.end());
long long cnt = 0;
for(int i = 0; i < N; ++i){
cnt += upper_bound(vS.begin(), vS.end(), K - L - dT[i]) - vS.begin();
cnt += upper_bound(vT.begin(), vT.end(), K - L - dS[i]) - vT.begin();
}
assert(cnt & 1 ^ 1);
cout << cnt / 2 << '\n';
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int T = 1;
// cin >> T;
while(T--) testcase();
return 0;
}
Compilation message (stderr)
Main.cpp: In lambda function:
Main.cpp:32:22: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
32 | for(auto [v, w] : adj[u]){
| ^
In file included from /usr/include/c++/10/cassert:44,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
from Main.cpp:1:
Main.cpp: In function 'void testcase()':
Main.cpp:64:16: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
64 | assert(cnt & 1 ^ 1);
| ~~~~^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |