# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1117465 | thtsshz_bgwrswh | 여행하는 상인 (APIO17_merchant) | C++17 | 55 ms | 2168 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<stdio.h>
#include<climits>
#include<algorithm>
using namespace std;
long long buy[105][1005],sell[105][1005];
long long graph[105][105],profit[105][105];
long long graph2[105][105];
long long n;
const long long INF = LLONG_MAX / 2;
void floyd(long long graph[105][105]){
long long i,j,k;
for(k=1;k<=n;k++)
for(i=1;i<=n;i++)
for(j=1;j<=n;j++)
graph[i][j]=min(graph[i][j],graph[i][k]+graph[k][j]);
}
int main(){
long long i,j,m,k,l;
scanf("%lld%lld%lld",&n,&m,&k);
for(i=1;i<=n;i++){
for(j=1;j<=n;j++)
graph[i][j]=INF;
for(j=0;j<k;j++){
scanf("%lld%lld",&buy[i][j],&sell[i][j]);
}
}
for(i=0;i<m;i++){
long long u,v,c;
scanf("%lld%lld%lld",&u,&v,&c);
graph[u][v]=c;
}
floyd(graph);
for(i=1;i<=n;i++){
for(j=1;j<=n;j++){
for(l=0;l<k;l++){
if(sell[j][l]!=-1&&buy[i][l]!=-1)
profit[i][j]=max(profit[i][j],sell[j][l]-buy[i][l]);
}
}
}
long long left=0,right=1e9+1;
while(right-left>1){
long long mid = (right+left)/2;
for(i=1;i<=n;i++)
for(j=1;j<=n;j++)
graph2[i][j]=mid*min(graph[i][j], INF/mid)-profit[i][j];
floyd(graph2);
bool check=0;
for(i=1;i<=n;i++)
check|=(graph2[i][i]<=0);
if(check)
left=mid;
else
right=mid;
}
printf("%lld",left);
}
컴파일 시 표준 에러 (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... |