Submission #249574

# Submission time Handle Problem Language Result Execution time Memory
249574 2020-07-15T09:53:35 Z godwind Travelling Merchant (APIO17_merchant) C++14
0 / 100
1000 ms 3124 KB
#include <iostream>
#include <vector>
#include <algorithm>
#include <random>
#include <set>
#include <map>
#include <queue>
#include <cstring>
#include <cmath>
#include <bitset>
#include <iomanip>
#include <functional>
//#include <unordered_map>
 
using namespace std;
 
template<typename T> void uin(T &a, T b) {if (b < a) a = b;}
template<typename T> void uax(T &a, T b) {if (b > a) a = b;}
 
#define int long long
#define double long double
#define left left228
#define right right228
#define mp make_pair
#define all(v) v.begin(), v.end()
 
const int N = 105, K = 1005;
const double eps = 1e-6;
const int INF = 1e18 + 228;
 
int n, m, k;
int buy[N][K], sell[N][K];
 
vector< pair<int, int> > g[N];
 
int dist[N][N];
int max_profit[N][N];
 
void pre() {
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= n; ++j) {
            dist[i][j] = INF;
        }
        dist[i][i] = 0;
    }
    for (int v = 1; v <= n; ++v) {
        for (pair<int, int> go : g[v]) {
            int to = go.first;
            int w = go.second;
            uin(dist[v][to], w);
        }
    }
    for (int k = 1; k <= n; ++k) {
        for (int i = 1; i <= n; ++i) {
            for (int j = 1; j <= n; ++j) {
                if (dist[i][k] < INF && dist[k][j] < INF) {
                    uin(dist[i][j], dist[i][k] + dist[k][j]);
                }
            }
        }
    }
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= n; ++j) {
            for (int t = 1; t <= k; ++t) {
                if (buy[i][t] != -1 && sell[j][t] != -1) {
                    uax(max_profit[i][j], sell[j][t] - buy[i][t]);
                }
            }
        }
    }
}
 
double d[N], d2[N];
 
bool Gr(double x, double y) {
    return x > y + eps;
}
 
struct edge
{
    int from, to;
    double w;
    edge() {}
    edge(int _from, int _to, double _w) {
        from = _from;
        to = _to;
        w = _w;
    }
};
 
bool check(double x) {
    vector< edge > edges;
    for (int a = 1; a <= n; ++a) {
        for (int b = 1; b <= n; ++b) {
            if (dist[a][b] < INF) {
                double weight = (double)max_profit[a][b] - (double)dist[a][b] * x;
                edges.emplace_back( a, b, -weight );
            }
        }
    }
    for (int i = 1; i <= n; ++i) {
        d[i] = INF;
    }
    d[1] = 0;
 
    for (int it = 0; it < n; ++it) {
        for (auto e : edges) {
            if (d[e.from] < INF / 2 && d[e.from] + e.w < d[e.to]) {
                d[e.to] = d[e.from] + e.w;
            }
        }
    }
    for (int i = 1; i <= n; ++i) {
        d2[i] = d[i];
    }
    for (int it = 0; it < n; ++it) {
        for (auto e : edges) {
            if (d2[e.from] < INF / 2 && d2[e.from] + e.w < d2[e.to]) {
                d2[e.to] = d2[e.from] + e.w;
            }
        }
    }
    for (int i = 1; i <= n; ++i) {
        if (Gr(d[i], d2[i])) return 1;
    }
    return 0;
}
 
signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cin >> n >> m >> k;
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= k; ++j) {
            cin >> buy[i][j] >> sell[i][j];
        }
    }
    for (int i = 0; i < m; ++i) {
        int u, v, w;
        cin >> u >> v >> w;
        g[u].emplace_back(v, w);
    }
    pre();
    double l = 0, r = 1e18;
    for (int i = 0; i < 100; ++i) {
        if (abs(r - l) <= eps) break;
        double M = (l + r) / 2.0;
        if (check(M)) {
            l = M;
        } else {
            r = M;
        }
    }
    cout << setprecision(15) << (int)r << '\n';
    return 0;
}
 
/*
 
 
*/
# Verdict Execution time Memory Grader output
1 Correct 953 ms 3124 KB Output is correct
2 Incorrect 892 ms 2436 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 136 ms 1120 KB Output is correct
2 Correct 135 ms 1084 KB Output is correct
3 Correct 134 ms 1128 KB Output is correct
4 Correct 120 ms 1108 KB Output is correct
5 Correct 136 ms 1136 KB Output is correct
6 Incorrect 1 ms 384 KB Output isn't correct
7 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1046 ms 2644 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 136 ms 1120 KB Output is correct
2 Correct 135 ms 1084 KB Output is correct
3 Correct 134 ms 1128 KB Output is correct
4 Correct 120 ms 1108 KB Output is correct
5 Correct 136 ms 1136 KB Output is correct
6 Incorrect 1 ms 384 KB Output isn't correct
7 Halted 0 ms 0 KB -