#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <set>
using namespace std;
#define endl '\n'
#define ll long long
#define pi pair<ll, ll>
#define f first
#define s second
const int inf = 0x3f3f3f3f;
const int mxn = 2000;
int n, m;
int u[mxn], v[mxn], a[mxn], b[mxn];
pi d[mxn];
set<pi> pq;
vector<int> g[mxn];
pi djk(ll x, ll y, int z){
for(int i = 1; i < n; i++) d[i] = {inf, inf};
pq.insert({0, 0});
while(!pq.empty()){
int c = pq.begin()->s;
if(c == z) break;
pq.erase(pq.begin());
for(int i : g[c]){
int j = c ^ u[i] ^ v[i];
ll dj = d[j].f * x + d[j].s * y, dc = (d[c].f + a[i]) * x + (d[c].s + b[i]) * y;
if(dj > dc){
pq.erase({dj, j});
d[j] = {d[c].f + a[i], d[c].s + b[i]};
pq.insert({dc, j});
}
}
}
return d[z];
}
pi f(pi x, pi y){
return x.f * x.s < y.f * y.s ? x : y;
}
pi sol(pi l, pi r, int x){
pi p = djk(r.s - l.s, l.f - r.f, x);
if((p.f - l.f) * (r.s - l.s) == (p.s - l.s) * (r.f - l.f)) return f(l, r);
return f(sol(l, p, x), sol(p, r, x));
}
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m;
for(int i = 0; i < m; i++){
cin >> u[i] >> v[i] >> a[i] >> b[i];
g[--u[i]].push_back(i);
g[--v[i]].push_back(i);
}
for(int i = 1; i < n; i++){
pi ret = sol(djk(0, 1, i), djk(1, 0, i), i);
cout << (ret.f != inf ? ret.f * ret.s : -1) << endl;
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2560 ms |
384 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2588 ms |
384 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2581 ms |
384 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2585 ms |
384 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2592 ms |
512 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2578 ms |
384 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2561 ms |
512 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1663 ms |
528 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2362 ms |
608 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2549 ms |
512 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |