Break Standard Weight(模拟,暴力)

来源:互联网 发布:腾讯视频制作软件 编辑:程序博客网 时间:2024/06/15 05:28

The balance was the first mass measuring instrument invented. In its traditional form, it consists of a pivoted horizontal lever of equal length arms, called the beam, with a weighing pan, also called scale, suspended from each arm (which is the origin of the originally plural term "scales" for a weighing instrument). The unknown mass is placed in one pan, and standard masses are added to this or the other pan until the beam is as close to equilibrium as possible. The standard weights used with balances are usually labeled in mass units, which are positive integers.

With some standard weights, we can measure several special masses object exactly, whose weight are also positive integers in mass units. For example, with two standard weights 1 and 5, we can measure the object with mass 145 or 6 exactly.

In the beginning of this problem, there are 2 standard weights, which masses are xand y. You have to choose a standard weight to break it into 2 parts, whose weights are also positive integers in mass units. We assume that there is no mass lost. For example, the origin standard weights are 4 and 9, if you break the second one into 4and 5, you could measure 7 special masses, which are 1, 3, 4, 5, 8, 9, 13. While if you break the first one into 1 and 3, you could measure 13 special masses, which are 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13! Your task is to find out the maximum number of possible special masses.

Input

There are multiple test cases. The first line of input is an integer T < 500 indicating the number of test cases. Each test case contains 2 integers x and y. 2 ≤ xy ≤ 100

Output

For each test case, output the maximum number of possible special masses.

Sample Input
24 910 10
Sample Output
13

9

思路:

模拟各种情况,为了防止重复,加上一个标记数组。

代码:

#include<cstdio>#include<cstring>#include<algorithm>#include<iostream>#include<cmath>#include<map>#include<stack>#include<queue>#include<vector>#include<string>using namespace std;typedef long long LL;const int INF=0x3f3f3f3f;bool a[250];int main(){    int T;    scanf("%d",&T);    while(T--)    {        int x,y;        scanf("%d%d",&x,&y);        int maxx=-1;        for(int i=0; i<2; i++)        {            if(i==-1)                printf("mdzz!");            if(i==1&&x==y)                break;            int u,v;            if(i==0)                u=x,v=y;            else if(i==1)                u=y,v=x;            for(int j=1; j<=u/2; j++)            {                memset(a,0,sizeof(a));                int sum=1;                a[v]=1;                int p=u-j;                if(!a[p])                {                    a[p]=1;                    sum++;                }                if(p!=j)                {                    if(!a[j])                        a[j]=1,                             sum++;                }                if(abs(p+v-j)&&!a[abs(p+v-j)])                    sum++,a[abs(p+v-j)]=1;                if(abs(p+j-v)&&!a[abs(p+j-v)])                    sum++,a[abs(p+j-v)]=1;                if(abs(v+j-p)&&!a[abs(v+j-p)])                    sum++,a[abs(v+j-p)]=1;                if(!a[v+p+j])                    sum++,a[v+p+j]=1;                if(abs(v-p)&&!a[abs(v-p)])                    sum++,a[abs(v-p)]=1;                if(abs(v-j)&&!a[abs(v-j)])                    sum++,a[abs(v-j)]=1;                if(abs(p-j)&&!a[abs(p-j)])                    sum++,a[abs(p-j)]=1;                if(!a[v+p])                    sum++,a[v+p]=1;                if(!a[v+j])                    sum++,a[v+j]=1;                if(!a[p+j])                    sum++,a[p+j]=1;                if(sum>maxx)                    maxx=sum;            }        }        printf("%d\n",maxx);    }}


0 0
原创粉丝点击