# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
232210 | BamiTorabi | 여행하는 상인 (APIO17_merchant) | C++14 | 120 ms | 4344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Sasayego! Sasayego! Shinzou wo Sasageyo!
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <ctime>
#include <cstring>
#include <vector>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <deque>
#include <numeric>
#include <bitset>
#include <ctime>
#define debug(x) cerr << #x << " = " << x << endl
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair <ll, ll> pll;
typedef pair <int, int> pii;
const int maxN = 1e2 + 5;
const int maxK = 1e3 + 5;
const ll INF = 1e18;
const ll MOD = 1e9 + 7;
ll S[maxN][maxK], B[maxN][maxK];
ll G[maxN][maxN], C[maxN][maxN];
int n, k, D[maxN][maxN];
bool isVal(ll X){
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++)
G[i][j] = X * D[i][j] - C[i][j];
for (int x = 1; x <= n; x++)
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++)
if (i != j)
G[i][j] = min(G[i][j], G[i][x] + G[x][j]);
for (int i = 1; i <= n; i++)
for (int j = 1; j < i; j++)
if (G[i][j] + G[j][i] <= 0)
return true;
return false;
}
int main(){
time_t START = clock();
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
memset(D, 63, sizeof D);
int m; scanf("%d%d%d", &n, &m, &k);
for (int i = 1; i <= n; i++)
for (int j = 0; j < k; j++)
scanf("%lld%lld", &B[i][j], &S[i][j]);
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++)
for (int x = 0; x < k; x++)
if (S[j][x] != -1 && B[i][x] != -1)
C[i][j] = max(C[i][j], S[j][x] - B[i][x]);
for (int i = 1; i <= n; i++)
D[i][i] = 0;
while (m--){
int u, v, w;
scanf("%d%d%d", &u, &v, &w);
D[u][v] = min(D[u][v], w);
}
for (int x = 1; x <= n; x++)
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++)
D[i][j] = min(D[i][x] + D[x][j], D[i][j]);
int lt = 0, rt = MOD;
while (rt - lt > 1){
int md = (lt + rt) >> 1;
(isVal(md) ? lt : rt) = md;
}
printf("%d\n", lt);
time_t FINISH = clock();
cerr << "Execution time: " << (ld)(FINISH - START) / CLOCKS_PER_SEC * 1000.0 << " milliseconds.\n";
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... |