# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
295280 | BeanZ | 여행하는 상인 (APIO17_merchant) | C++14 | 86 ms | 4424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
const int N = 1e5 + 5;
ll dp[105][105], p[105][105], dist[105][105], b[105][1005], s[105][1005];
bool chk(ll mid, ll n){
memset(dp, 0, sizeof(dp));
for (int i = 1; i <= n; i++){
for (int j = 1; j <= n; j++){
dp[i][j] = p[i][j] - mid * dist[i][j];
}
}
for (int k = 1; k <= n; k++){
for (int i = 1; i <= n; i++){
for (int j = 1; j <= n; j++){
if (i != j) dp[i][j] = max(dp[i][j], dp[i][k] + dp[k][j]);
}
}
}
for (int i = 1; i <= n; i++){
for (int j = i + 1; j <= n; j++){
if ((dp[i][j] + dp[j][i]) >= 0) return true;
}
}
return false;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
if (fopen("balance.in", "r")){
freopen("balance.in", "r", stdin);
freopen("balance.out", "w", stdout);
}
ll n, m, k;
cin >> n >> m >> k;
for (int i = 1; i <= n; i++){
for (int j = 1; j <= k; j++){
cin >> b[i][j] >> s[i][j];
}
}
for (int i = 1; i <= n; i++){
for (int j = 1; j <= n; j++){
dist[i][j] = 1e9;
}
}
for (int i = 1; i <= m; i++){
ll u, v, c;
cin >> u >> v >> c;
dist[u][v] = c;
}
for (int x = 1; x <= n; x++){
for (int i = 1; i <= n; i++){
for (int j = 1; j <= n; j++){
dist[i][j] = min(dist[i][j], dist[i][x] + dist[x][j]);
}
}
}
for (int x = 1; x <= k; x++){
for (int i = 1; i <= n; i++){
for (int j = 1; j <= n; j++){
if (b[i][x] > 0 && s[j][x] > 0) p[i][j] = max(p[i][j], s[j][x] - b[i][x]);
}
}
}
ll l = 0, h = 1e9;
while (l <= h){
ll mid = (l + h) >> 1;
if (chk(mid, n)) l = mid + 1;
else h = mid - 1;
}
cout << max(h, 0ll);
}
/*
*/
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |