# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
547653 | status_coding | 여행하는 상인 (APIO17_merchant) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
void calcDist()
{
for(int k=1;k<=n;k++)
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j]);
}
void calcProfit()
{
}
int main()
{
cin>>n>>m>>k;
for(int i=1; i<=n; i++)
{
for(int j=1; j<=k; j++)
cin>>buy[i][j]>>sell[i][j];
}
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
{
if(i == j)
continue;
dist[i][j] = 1e18;
}
for(int i=1;i<=m;i++)
{
long long x, y, val;
cin>>x>>y>>val;
dist[x][y] = min(dist[x][y], val);
}
calcDist();
calcProfit();
st=0;
dr=1e18;
while(st <= dr)
{
mij = (st+dr)/2;
if(ok(mij))
{
last=mij;
st=mij+1;
}
else
dr=mij-1;
}
cout<<last;
return 0;
}