# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
444404 | mjhmjh1104 | 여행하는 상인 (APIO17_merchant) | C++17 | 114 ms | 1328 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
int n, m, k, b[106][1006], s[106][1006];
long long dist[106][106], c[106][106], cost[106][106];
int main() {
scanf("%d%d%d", &n, &m, &k);
for (int i = 0; i < n; i++) for (int j = 0; j < k; j++) scanf("%d%d", b[i] + j, s[i] + j);
fill(dist[0], dist[105] + 106, (long long)1e9);
for (int i = 0; i < m; i++) {
int u, v, w;
scanf("%d%d%d", &u, &v, &w);
u--, v--;
dist[u][v] = w;
}
for (int i = 0; i < 106; i++) dist[i][i] = 0;
for (int k = 0; k < n; k++) for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j]);
for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) {
int curr = 0;
for (int l = 0; l < k; l++) if (b[i][l] != -1 && s[j][l] != -1) curr = max(curr, s[j][l] - b[i][l]);
c[i][j] = curr;
}
int l = 0, r = 1e9 + 5;
while (l < r) {
int m = (l + r + 1) / 2;
for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) {
if (dist[i][j] == (long long)1e9) cost[i][j] = 4e18;
else cost[i][j] = m * dist[i][j] - c[i][j];
}
for (int i = 0; i < n; i++) cost[i][i] = 4e18;
for (int k = 0; k < n; k++) for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) cost[i][j] = min(cost[i][j], max(cost[i][k] + cost[k][j], (long long)-4e18));
for (int i = 0; i < n; i++) if (cost[i][i] <= 0) {
l = m;
goto next;
}
r = m - 1;
next:;
}
printf("%d", l);
}
컴파일 시 표준 에러 (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... |