//
// Mateusz Pietrowcow
//
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#define MOD 1000000007
#define INF 1000000000
#define INFL 1000000000000000000LL
#define Tak cout << "TAK" << '\n'
#define Nie cout << "NIE" << '\n'
#define min3(x, y, z) min(x, min(y, z))
#define max3(x, y, z) max(x, max(y, z))
using namespace std;
typedef long long ll;
typedef unsigned int uint;
typedef unsigned long long ull;
typedef pair<int,int> ii;
typedef pair<long long, long long> pll;
typedef pair<unsigned long long, unsigned long long> pull;
ull t[32], r = 0;
void recSolve (ull h, ull w, ull pos)
{
while (h < t[pos] && w < t[pos])
pos--;
r += (h / t[pos]) * (w / t[pos]);
bool fullH = (h % t[pos] == 0),
fullW = (w % t[pos] == 0);
if (pos == 0 || (fullH && fullW)) return;
else if (fullH) recSolve(h, w % t[pos], pos - 1);
else if (fullW) recSolve(h % t[pos], w, pos - 1);
else
{
recSolve(h - (h % t[pos]), w % t[pos], pos - 1);
recSolve(h % t[pos], w, pos - 1);
}
}
void readSolve()
{
ull n, h, w;
cin >> h >> w >> n;
for (int i = 0; i < n; i++)
cin >> t[i];
if (h % t[0] != 0 || w % t[0] != 0)
{
cout << -1;
return;
}
recSolve(h, w, n - 1);
cout << r;
}
int main()
{
ios_base::sync_with_stdio(0);
cout.tie(0);
cin.tie(0);
readSolve();
}
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | // // Mateusz Pietrowcow // #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #define MOD 1000000007 #define INF 1000000000 #define INFL 1000000000000000000LL #define Tak cout << "TAK" << '\n' #define Nie cout << "NIE" << '\n' #define min3(x, y, z) min(x, min(y, z)) #define max3(x, y, z) max(x, max(y, z)) using namespace std; typedef long long ll; typedef unsigned int uint; typedef unsigned long long ull; typedef pair<int,int> ii; typedef pair<long long, long long> pll; typedef pair<unsigned long long, unsigned long long> pull; ull t[32], r = 0; void recSolve (ull h, ull w, ull pos) { while (h < t[pos] && w < t[pos]) pos--; r += (h / t[pos]) * (w / t[pos]); bool fullH = (h % t[pos] == 0), fullW = (w % t[pos] == 0); if (pos == 0 || (fullH && fullW)) return; else if (fullH) recSolve(h, w % t[pos], pos - 1); else if (fullW) recSolve(h % t[pos], w, pos - 1); else { recSolve(h - (h % t[pos]), w % t[pos], pos - 1); recSolve(h % t[pos], w, pos - 1); } } void readSolve() { ull n, h, w; cin >> h >> w >> n; for (int i = 0; i < n; i++) cin >> t[i]; if (h % t[0] != 0 || w % t[0] != 0) { cout << -1; return; } recSolve(h, w, n - 1); cout << r; } int main() { ios_base::sync_with_stdio(0); cout.tie(0); cin.tie(0); readSolve(); } |
English