# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
759284 | boyliguanhan | 여행하는 상인 (APIO17_merchant) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int calc[10][100][1000], b[10][100], s[10][100], N, k, m;
vector<pair<int, int>> adj[5];
void dfs(int n, int item, int dist, int profit) {
if(calc[n][item][dist]>=profit) continue;
calc[n][item][dist] = profit;
if(item) {
if(s[n][item]>0)
dfs(n, 0, dist, profit+s[n][item]);
} else {
for(int i = 1; i <= k; i++)
dfs(n,i,dist,profit-b[n][i]);
}
for(auto i: adj[n]) {
dfs(i.first, item, dist+i.second, profit);
}
}
int main() {
memset(calc, -2, sizeof calc);
cin >> N >> k >> m;
for(int i = 0; i < N; i++) {
for(int j = 1; j <= k; j++)
cin >> b[i][j];
for(int j = 1; j <= k; j++)
cin >> s[i][j];
}
while(m--) {
int a, b, c;
cin >> a >> b >> c;
adj[a].push_back({b, c});
}
dfs(0,0,0,0);
int ans = 0;
for(int i = 1; i < 100; i++) {
ans = max(ans, calc[0][0][i]/i);
}
cout << ans << '\n';
}