#include <bits/stdc++.h>
#define int long long
using namespace std;
int go(int w, int h, vector<int> &a) {
if (!w || !h) return 0;
if (w > h) return go(h, w, a);
if ((w % a.back()) || (h % a.back())) return -1;
int oldw = w;
int res = 0;
int curh = 0;
for (int v : a) {
if (v > w) continue;
if (!curh) curh = v;
int rem = w / v;
w %= v;
// cerr << "using " << v << " w is now " << w << endl;
res += (curh / v) * rem;
}
if (w) return -1;
int covh = h / curh;
h %= curh;
res *= covh;
int rest = go(oldw, h, a);
if (res == -1) return -1;
return rest + res;
}
void solve() {
int w, h;
cin >> w >> h;
int n;
cin >> n;
vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
}
reverse(a.begin(), a.end());
cout << go(w, h, a) << endl;
}
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
// #ifdef LOCAL
// int t; cin >> t; while (t--)
// #endif
solve();
cout.flush();
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | #include <bits/stdc++.h> #define int long long using namespace std; int go(int w, int h, vector<int> &a) { if (!w || !h) return 0; if (w > h) return go(h, w, a); if ((w % a.back()) || (h % a.back())) return -1; int oldw = w; int res = 0; int curh = 0; for (int v : a) { if (v > w) continue; if (!curh) curh = v; int rem = w / v; w %= v; // cerr << "using " << v << " w is now " << w << endl; res += (curh / v) * rem; } if (w) return -1; int covh = h / curh; h %= curh; res *= covh; int rest = go(oldw, h, a); if (res == -1) return -1; return rest + res; } void solve() { int w, h; cin >> w >> h; int n; cin >> n; vector<int> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } reverse(a.begin(), a.end()); cout << go(w, h, a) << endl; } signed main() { ios_base::sync_with_stdio(false); cin.tie(0); // #ifdef LOCAL // int t; cin >> t; while (t--) // #endif solve(); cout.flush(); } |
English