# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
12122 |
2014-12-21T07:31:00 Z |
gs14004 |
Min-cost GCD (GA9_mcg) |
C++ |
|
1000 ms |
1324 KB |
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <map>
using namespace std;
typedef long long lint;
typedef pair<lint,lint> pi;
map<pi,lint> mp;
lint a,b,p,q;
bool calc_valid(lint x, lint y){
double t = log10(x)+log10(y);
return t < 17;
}
lint f(lint x, lint y){
if(x == 0 || y == 0) return 0;
if(mp.find(pi(x,y)) != mp.end()) return mp[pi(x,y)];
if(x >= y){
if(!calc_valid(q,x/y)) return mp[pi(x,y)] = f(y,x%y) + p;
else return mp[pi(x,y)] = min(f(y,x%y) + p,f(x%y,y) + q*(x/y));
}
else return f(x,y%x) + q*(y/x);
}
void solve(){
mp.clear();
scanf("%lld %lld %lld %lld",&a,&b,&p,&q);
if(a < b){
lint cand1 = p + f(b,a);
if(!calc_valid(q,b/a)) printf("%lld\n",cand1);
else cand1 = min(cand1,f(a,b));
printf("%lld",cand1);
}
else printf("%lld\n",f(a,b));
}
int main(){
int t;
scanf("%d",&t);
while (t--) {
solve();
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
1324 KB |
Output is correct |
2 |
Incorrect |
0 ms |
1324 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
213 ms |
1324 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
6 ms |
1324 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1000 ms |
1324 KB |
Program timed out |
2 |
Halted |
0 ms |
0 KB |
- |