#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define gcd __gcd
#define sz(v) (int) v.size()
#define pb push_back
#define pi pair<int,int>
#define all(v) (v).begin(), (v).end()
#define compact(v) (v).erase(unique(all(v)), (v).end())
#define FOR(i, a, b) for(int i = (a); i <= (b); i++)
#define dbg(x) "[" #x " = " << (x) << "]"
///#define int long long
using ll = long long;
using ld = long double;
using ull = unsigned long long;
template<typename T> bool ckmx(T& a, const T& b){if(a < b) return a = b, true; return false;}
template<typename T> bool ckmn(T& a, const T& b){if(a > b) return a = b, true; return false;}
const int N = 2e5+5;
const ll MOD = 1e9+7;
const ll INF = 1e18;
int n, m, S, T, L, K;
ll dist[2][N];
vector<pair<int,int>> adj[N];
void dijkstra(int id, int source){
priority_queue<pair<ll,int>> pq;
FOR(i, 1, n){
if(i == source){
dist[id][i] = 0;
pq.push(make_pair(0, i));
}
else dist[id][i] = INF;
}
while(!pq.empty()){
pair<ll,int> eq = pq.top(); pq.pop();
ll cur_dist = -eq.first; int x = eq.second;
if(cur_dist > dist[id][x]) continue;
for(pair<int,int> e : adj[x]){
int v = e.first; ll w = e.second;
if(dist[id][v] > cur_dist + w){
dist[id][v] = cur_dist + w;
pq.push(make_pair(-dist[id][v], v));
}
}
}
return;
}
void solve()
{
cin >> n >> m >> S >> T >> L >> K;
FOR(i, 1, m){
int u,v,w; cin >> u >> v >> w;
adj[u].emplace_back(v, w);
adj[v].emplace_back(u, w);
}
dijkstra(0, S);
dijkstra(1, T);
vector<int> idS(n+1); iota(1 + all(idS), 1);
vector<int> idT(n+1); iota(1 + all(idT), 1);
sort(1 + all(idS), [&](int u, int v){
return dist[0][u] < dist[0][v];
});
sort(1 + all(idT), [&](int u, int v){
return dist[1][u] < dist[1][v];
});
ll answer = 0;
for(int i = 1, j = n; i <= n; i++){
int u = idS[i];
while(j > 0 && dist[1][idT[j]] + dist[0][u] + L > K) j--;
answer = answer + 1ll * j;
}
cout << answer <<"\n";
return;
}
signed main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
#define name "InvMOD"
if(fopen(name".INP", "r")){
freopen(name".INP","r",stdin);
freopen(name".OUT","w",stdout);
}
int t = 1; //cin >> t;
while(t--) solve();
return 0;
}
Compilation message
Main.cpp: In function 'int main()':
Main.cpp:105:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
105 | freopen(name".INP","r",stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
Main.cpp:106:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
106 | freopen(name".OUT","w",stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
4948 KB |
Output is correct |
2 |
Correct |
4 ms |
4948 KB |
Output is correct |
3 |
Correct |
4 ms |
5304 KB |
Output is correct |
4 |
Correct |
4 ms |
4948 KB |
Output is correct |
5 |
Correct |
5 ms |
5176 KB |
Output is correct |
6 |
Incorrect |
6 ms |
5436 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
4948 KB |
Output is correct |
2 |
Correct |
4 ms |
4964 KB |
Output is correct |
3 |
Correct |
4 ms |
4948 KB |
Output is correct |
4 |
Runtime error |
11 ms |
10068 KB |
Execution killed with signal 11 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
4948 KB |
Output is correct |
2 |
Correct |
4 ms |
4964 KB |
Output is correct |
3 |
Correct |
4 ms |
4948 KB |
Output is correct |
4 |
Runtime error |
11 ms |
10068 KB |
Execution killed with signal 11 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
4948 KB |
Output is correct |
2 |
Correct |
4 ms |
4948 KB |
Output is correct |
3 |
Correct |
4 ms |
5304 KB |
Output is correct |
4 |
Correct |
4 ms |
4948 KB |
Output is correct |
5 |
Correct |
5 ms |
5176 KB |
Output is correct |
6 |
Incorrect |
6 ms |
5436 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |