#include<bits/stdc++.h>usingnamespacestd;constintN =101;constintM =10001;intn, m, t, price[N][N], f[M];intmain(){cin >> t >> n >> m;for(inti =1; i <= t; i++)for(intj =1; j <= n; j++)cin >> price[j][i];//读入每种商品每天的价格for(intk =1; k < t;...