# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
53943 | MatheusLealV | Travelling Merchant (APIO17_merchant) | C++17 | 102 ms | 2552 KiB |
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>
#define N 105
#define M 1005
#define inf 1000000000000000000
using namespace std;
typedef long long ll;
int n, m, k;
ll opt[N][N], B[N][M], S[N][M], dist[N][N], dp[N][N];
inline bool check(ll x)
{
for(int i = 1; i <= n; i++)
{
for(int j = 1; j <= n; j++)
if(dist[i][j] == inf) dp[i][j] = inf;
else dp[i][j] = x*dist[i][j] - opt[i][j];
}
for(int k = 1; k <= n; k++)
for(int i = 1; i <= n; i++)
for(int j = 1; j <= n; j++)
dp[i][j] = min(dp[i][j], dp[i][k] + dp[k][j]);
for(int i = 1; i <= n; i++) if(dp[i][i] <= 0) return true;
return false;
}
# | 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... |