#include #include #define repeat(i,n) for (int i = 0; (i) < int(n); ++(i)) #define repeat_reverse(i,n) for (int i = (n)-1; (i) >= 0; --(i)) using namespace std; template inline void setmin(T & a, T const & b) { a = min(a, b); } template auto vectors(X x, T a) { return vector(x, a); } template auto vectors(X x, Y y, Z z, Zs... zs) { auto cont = vectors(y, z, zs...); return vector(x, cont); } constexpr int inf = 1e9+7; int main() { int w, h, n, f; cin >> w >> h >> n >> f; vector dx(n), dy(n), c(n); repeat (i,n) cin >> dx[i] >> dy[i] >> c[i]; auto is_on_field = [&](int y, int x) { return 0 <= y and y <= h and 0 <= x and x <= w; }; auto dp = vectors(h+1, w+1, inf); repeat (y,h+1) repeat (x,w+1) { dp[y][x] = (y + x) * f; } repeat (i,n) { repeat_reverse (y,h+1) repeat_reverse (x,w+1) { int ny = y - dy[i]; int nx = x - dx[i]; if (is_on_field(ny, nx)) { setmin(dp[y][x], dp[ny][nx] + c[i]); } } } cout << dp[h][w] << endl; return 0; }