計蒜客————Folding

  •  30.64%
  •  2000ms
  •  262144K


As you can remember, Alex is fond of origami. She switched from squares to rectangles, and rectangles are much more difficult to master. Her main interest is to determine what is the minimum possible number of folds required to transform ×rectangle to × one. The result of each fold should also be rectangular, so it is only allowed to make folds that are parallel to the sides of the rectangle.

Help Alex and write a program that determines the minimum required number of folds.

Input

The first line of the input contains two integers Wand — the initial rectangle dimensions. The second line contains two more integers and — the target rectangle dimensions (1 ≤ W, H, w, h ≤ 10^9109).

Output

Output a single integer — the minimum required number of folds to transform the initial rectangle to the target one.

If the required transformation is not possible, output 1. 

樣例輸入1

2 7
2 2

樣例輸出1

2

樣例輸入2

10 6
4 8

樣例輸出2

2

樣例輸入3

5 5
1 6

樣例輸出3

-1
上面所給矩形摺疊成下邊所給矩形的最小摺疊次數..模擬一下就好.
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
int func2(int x1,int x2){
    if(x2==x1) return 0;
    for(int i=1;;i++){
        x2*=2;
        if(x2>=x1) return i;
    }
}
int func1(int x1,int y1,int x2,int y2) {
    if(x1<x2||y1<y2) return -1;
    return func2(x1,x2)+func2(y1,y2);
}
int main() {
    int x1,x2,y1,y2;
    while(~scanf("%d%d%d%d",&x1,&y1,&x2,&y2)){
        int t1=func1(x1,y1,x2,y2),t2=func1(x1,y1,y2,x2);
        if(t1==-1||t2==-1)
            printf("%d\n",max(t1,t2));
        else printf("%d\n",min(t1,t2));
    }
    return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章