【cf490】D. Chocolate(素数定理)

http://codeforces.com/contest/490/problem/D

好神的一题,不会做。。

其实就是将所有的质因子找出来,满足:

最终的所有质因子的乘积相等

但是我们只能操作质因子2和3,那么我们就要将任意一边质因子多的先约掉。且先执行3,因为操作是2/3嘛。。

所以筛掉3后再筛2,然后判断面积是否等即可

#include <cstdio>
#include <cstring>
#include <cmath>
#include <string>
#include <iostream>
#include <algorithm>
#include <queue>
#include <set>
#include <map>
using namespace std;
typedef long long ll;
#define rep(i, n) for(int i=0; i<(n); ++i)
#define for1(i,a,n) for(int i=(a);i<=(n);++i)
#define for2(i,a,n) for(int i=(a);i<(n);++i)
#define for3(i,a,n) for(int i=(a);i>=(n);--i)
#define for4(i,a,n) for(int i=(a);i>(n);--i)
#define CC(i,a) memset(i,a,sizeof(i))
#define read(a) a=getint()
#define print(a) printf("%d", a)
#define dbg(x) cout << (#x) << " = " << (x) << endl
#define error(x) (!(x)?puts("error"):0)
inline const int getint() { int r=0, k=1; char c=getchar(); for(; c<'0'||c>'9'; c=getchar()) if(c=='-') k=-1; for(; c>='0'&&c<='9'; c=getchar()) r=r*10+c-'0'; return k*r; }

ll ans, a1, b1, a2, b2, t1, t2;
int main() {
	cin >> a1 >> b1 >> a2 >> b2;
	ll a=a1*b1, b=a2*b2;
	while(a%3==0) ++t1, a/=3;
	while(b%3==0) ++t2, b/=3;
	ans+=abs(t1-t2);
	while(t1>t2 && a1%3==0) a1-=a1/3, --t1;
	while(t1>t2 && b1%3==0) b1-=b1/3, --t1;
	while(t1<t2 && a2%3==0) a2-=a2/3, --t2;
	while(t1<t2 && b2%3==0) b2-=b2/3, --t2;
	if(t1!=t2) { puts("-1"); return 0; }
	a=a1*b1, b=a2*b2;
	t1=t2=0;
	while(a%2==0) ++t1, a/=2;
	while(b%2==0) ++t2, b/=2;
	ans+=abs(t1-t2);
	while(t1>t2 && a1%2==0) a1-=a1/2, --t1;
	while(t1>t2 && b1%2==0) b1-=b1/2, --t1;
	while(t1<t2 && a2%2==0) a2-=a2/2, --t2;
	while(t1<t2 && b2%2==0) b2-=b2/2, --t2;
	if(a1*b1!=a2*b2) { puts("-1"); return 0; }
	cout << ans << endl << a1 << ' ' << b1 << endl << a2 << ' ' << b2;
	return 0;
}

  

 


 

 

Polycarpus likes giving presents to Paraskevi. He has bought two chocolate bars, each of them has the shape of a segmented rectangle. The first bar is a1 × b1 segments large and the second one is a2 × b2 segments large.

Polycarpus wants to give Paraskevi one of the bars at the lunch break and eat the other one himself. Besides, he wants to show that Polycarpus's mind and Paraskevi's beauty are equally matched, so the two bars must have the same number of squares.

To make the bars have the same number of squares, Polycarpus eats a little piece of chocolate each minute. Each minute he does the following:

  • he either breaks one bar exactly in half (vertically or horizontally) and eats exactly a half of the bar,
  • or he chips of exactly one third of a bar (vertically or horizontally) and eats exactly a third of the bar.

In the first case he is left with a half, of the bar and in the second case he is left with two thirds of the bar.

Both variants aren't always possible, and sometimes Polycarpus cannot chip off a half nor a third. For example, if the bar is 16 × 23, then Polycarpus can chip off a half, but not a third. If the bar is 20 × 18, then Polycarpus can chip off both a half and a third. If the bar is 5 × 7, then Polycarpus cannot chip off a half nor a third.

What is the minimum number of minutes Polycarpus needs to make two bars consist of the same number of squares? Find not only the required minimum number of minutes, but also the possible sizes of the bars after the process.

Input

The first line of the input contains integers a1, b1 (1 ≤ a1, b1 ≤ 109) — the initial sizes of the first chocolate bar. The second line of the input contains integers a2, b2 (1 ≤ a2, b2 ≤ 109) — the initial sizes of the second bar.

You can use the data of type int64 (in Pascal), long long (in С++), long (in Java) to process large integers (exceeding 231 - 1).

Output

In the first line print m — the sought minimum number of minutes. In the second and third line print the possible sizes of the bars after they are leveled in m minutes. Print the sizes using the format identical to the input format. Print the sizes (the numbers in the printed pairs) in any order. The second line must correspond to the first bar and the third line must correspond to the second bar. If there are multiple solutions, print any of them.

If there is no solution, print a single line with integer -1.

Sample test(s)
input
2 6
2 3
output
1
1 6
2 3
input
36 5
10 16
output
3
16 5
5 16
input
3 5
2 1
output
-1
posted @ 2014-12-02 06:37  iwtwiioi  阅读(433)  评论(0编辑  收藏  举报