#include <bits/stdc++.h>
#define ll long long
#define pb push_back
#define pp pop_back
#define mp make_pair
#define bb back
#define ff first
#define ss second
#define int long long
using namespace std;
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int n, m, h;
cin >> n >> m >> h;
vector<vector<pair<int, int> > > path(n, vector<pair<int, int> >(h));
for (int i = 0; i < n-1; i++)
for (int j = 0; j < h; j++)
cin >> path[i][j].ff >> path[i][j].ss;
vector<vector<int> > reach(n, vector<int>(m, 0));
reach[0][0] = 1;
for (int i = 0; i < n-1; i++) {
for (int k = 0; k < m; k++) {
for (int p = 0; p < h; p++) {
if (path[i][p].ff <= i)
continue;
for (int j = path[i][p].ss+k; j < m; j++)
reach[path[i][p].ff][j] = min((long long)500000001, reach[i][k]+reach[path[i][p].ff][j]);
}
}
}
for (int i = 0; i < m; i++)
cout << reach[n-1][i] << ' ';
cout << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
212 KB |
Output is correct |
5 |
Correct |
51 ms |
420 KB |
Output is correct |
6 |
Correct |
49 ms |
432 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
0 ms |
212 KB |
Output is correct |
5 |
Correct |
51 ms |
420 KB |
Output is correct |
6 |
Correct |
49 ms |
432 KB |
Output is correct |
7 |
Correct |
255 ms |
8580 KB |
Output is correct |
8 |
Execution timed out |
2091 ms |
11220 KB |
Time limit exceeded |
9 |
Halted |
0 ms |
0 KB |
- |