# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
50108 | mohammad_kilani | 여행하는 상인 (APIO17_merchant) | C++17 | 109 ms | 1492 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define mod 1000000007
#define oo 1000000005
const int N = 150 , K = 1100;
int dist[N][N] , best[N][N];
long long cur[N][N];
int b[N][K] , s[N][K];
int n , m , k , u , v , w;
bool check(int mid){
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
if(i == j) continue;
cur[i][j] = (long long)dist[i][j] * mid - best[i][j];
}
}
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
for(int k=1;k<=n;k++){
cur[j][k] = min(cur[j][k] , cur[j][i] + cur[i][k]);
}
}
}
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
if(i != j && dist[i][j] != oo && dist[j][i] != oo)
if(cur[i][j] + (long long)mid * dist[j][i] <= 0)
return true;
}
}
return false;
}
int main() {
scanf("%d%d%d",&n,&m,&k);
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
if(i != j)
dist[i][j] = oo;
}
}
for(int i=1;i<=n;i++){
for(int j=1;j<=k;j++){
scanf("%d%d",&b[i][j],&s[i][j]);
}
}
for(int i=0;i<m;i++){
scanf("%d%d%d",&u,&v,&w);
dist[u][v] = min(dist[u][v],w);
}
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
for(int k=1;k<=n;k++){
dist[j][k] = min(dist[j][k], dist[j][i] + dist[i][k]);
}
}
}
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
if(i == j) continue;
if(dist[i][j] == oo) continue;
for(int l=1;l<=k;l++){
if(b[i][l] != -1 && s[j][l] != -1)
best[i][j] = max(best[i][j], s[j][l] - b[i][l]);
}
}
}
int low = 0 , high = oo , ans = 0 , mid = 0;
while(high >= low){
mid = (low + high) / 2;
if(check(mid)){
ans = mid;
low = mid + 1;
}
else
high = mid - 1;
}
cout << ans << endl;
return 0;
}
컴파일 시 표준 에러 (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... |