#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx512f")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAXN = 100000;
alignas(1024) ll a[MAXN], b[MAXN], dp[MAXN];
signed main(){
cin.tie(0)->sync_with_stdio(0);
int h, w; cin >> h >> w;
for (int i=0; i<h; i++){
cin >> a[i];
}
for (int j=0; j<w; j++){
cin >> b[j];
}
memset(dp, 0x3f, sizeof dp);
dp[0] = 0;
for (int i=0; i<h-1; i++){
ll v = dp[0];
for (int j=1; j<w; j++){
v = v > dp[j] - a[i] * j ? dp[j] - a[i] * j : v;
dp[j] = dp[j] < v + a[i] * j ? dp[j] : v + a[i] * j;
}
for (int j=0; j<w; j++){
dp[j] += b[j];
}
}
for (int j=1; j<w; j++){
dp[j] = dp[j] < dp[j-1] + a[h-1] ? dp[j] : dp[j-1] + a[h-1];
}
cout << dp[w-1] << "\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2652 KB |
Output is correct |
2 |
Correct |
1 ms |
2652 KB |
Output is correct |
3 |
Correct |
1 ms |
2652 KB |
Output is correct |
4 |
Runtime error |
3 ms |
4956 KB |
Execution killed with signal 4 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2648 KB |
Output is correct |
2 |
Correct |
1 ms |
2652 KB |
Output is correct |
3 |
Runtime error |
3 ms |
4956 KB |
Execution killed with signal 4 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2652 KB |
Output is correct |
2 |
Correct |
1 ms |
2652 KB |
Output is correct |
3 |
Correct |
1 ms |
2652 KB |
Output is correct |
4 |
Runtime error |
3 ms |
4956 KB |
Execution killed with signal 4 |
5 |
Halted |
0 ms |
0 KB |
- |