# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
57851 | Jeez | Travelling Merchant (APIO17_merchant) | C++14 | 278 ms | 2656 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
typedef long long ll;
const ll INF = 1e10;
const int MAX_N = 100 + 9;
const int MAX_K = 1000 + 9;
int n, m, K;
ll buy[MAX_N][MAX_K], sell[MAX_N][MAX_K];
ll w[MAX_N][MAX_N], dist[MAX_N][MAX_N], profit[MAX_N][MAX_N];
ll g[MAX_N][MAX_N];
void read(){
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 = 0; i < m; i++){
int u, v;
ll w;
cin >> u >> v >> w;
dist[u][v] = w;
}
}
void init(){
for(int i = 1; i < MAX_N; i++){
for(int j = 1; j < MAX_N; j++)
dist[i][j] = INF;
dist[i][i] = 0;
# | 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... |