# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
125679 |
2019-07-06T08:17:56 Z |
abacaba |
Ceste (COCI17_ceste) |
C++14 |
|
34 ms |
760 KB |
#include <bits/stdc++.h>
using namespace std;
#define max3(a, b, c) max(a, max(b, c))
#define min3(a, b, c) min(a, min(b, c))
#define mp make_pair
#define f first
#define se second
#define pb push_back
#define ppb pop_back
#define ll long long
#define ull unsigned long long
#define cntbit(x) __builtin_popcount(x)
#define uset unordered_set
#define umap unordered_map
#define pii pair<int, int>
#define ld long double
#define pll pair<long long, long long>
#define int long long
struct edge {
int to, t, c;
edge(int to, int t, int cost) : to(to), t(t), c(cost) {}
};
const int inf = 2e15;
const int N = 2e3 + 15;
int n, m, ans[N];
double d[N];
int sumt[N], sumc[N];
vector <edge> g[N];
bool used[N];
set <pii> q;
vector <pair <pii, pii> > edges;
void dxtra(double x) {
fill(d, d + N, inf);
memset(sumt, 0, sizeof(sumt));
memset(sumc, 0, sizeof(sumc));
d[1] = 0;
q.insert(mp(0, 1));
while(!q.empty()) {
int v = q.begin()->se;
q.erase(q.begin());
for(auto u : g[v]) {
if(d[v] + u.t * x + u.c * (1 - x) < d[u.to]) {
q.erase(mp(d[u.to], u.to));
sumt[u.to] = sumt[v] + u.t;
sumc[u.to] = sumc[v] + u.c;
d[u.to] = d[v] + u.t * x + u.c * (1 - x);
q.insert(mp(d[u.to], u.to));
}
}
}
for(int i = 2; i <= n; ++i)
ans[i] = min(ans[i], sumt[i] * sumc[i]);
}
#undef int
int main() {
#define int long long
fill(ans, ans + N, inf);
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n >> m;
for(int i = 1; i <= m; ++i) {
int u, v, t, c;
cin >> u >> v >> t >> c;
g[u].pb(*new edge(v, t, c));
g[v].pb(*new edge(u, t, c));
edges.pb({{u, v}, {t, c}});
}
double x = 0;
dxtra(0);
for(int i = 1; i <= n; ++i) {
for(int i = 0; i < edges.size(); ++i) {
int u = edges[i].f.f, v = edges[i].f.se, t = edges[i].se.f, c = edges[i].se.se;
double newx = (double)(x * (sumt[v] - sumc[v] - sumt[u] + sumc[u]) + (sumc[u] + c - sumc[v])) / (t + c);
if(newx > x && newx <= 1) {
x = newx;
dxtra(x);
}
}
}
for(int i = 2; i <= n; ++i)
cout << (ans[i] == inf || ans[i] == 0 ? -1 : ans[i]) << endl;
return 0;
}
Compilation message
ceste.cpp: In function 'int main()':
ceste.cpp:76:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < edges.size(); ++i) {
~~^~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
504 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
504 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
504 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
504 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
16 ms |
760 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
504 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
30 ms |
760 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
18 ms |
760 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
17 ms |
760 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
34 ms |
760 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |