Break Standard Weight

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 and5, 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 x and 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 4 and 5, you could measure 7special 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

2
4 9
10 10

Sample Output

13
9
 1 #include <cstdio>
 2 #include <map>
 3 using namespace std;
 4 map<int, bool>m;
 5 
 6 int abs(int n)
 7 {
 8     if(n<0) return -n;
 9     else return n;
10 }
11 int main()
12 {
13     int t, x, y, max, sum, i, j, k, a, b, c;
14     scanf("%d", &t);
15     while (t--)
16     {
17         scanf("%d%d", &x, &y);
18         max = 0;
19         for (i = 1; i < x; ++i)
20         {
21             a = i;
22             b = x - i;
23             c= y;
24             m.clear();
25             m[a] = m[b] = m[c] = true;
26             m[abs(a+b)] = m[abs(a+b-c)] = m[abs(a+b+c)] = true;
27             m[abs(a-b)] = m[abs(a-b+c)] = m[abs(a-b-c)] = true;
28             m[abs(c+b)] = m[abs(c+b-a)] = true;
29             m[abs(c-b)] = m[abs(c-b+a)] = m[abs(c-b-a)] = true;
30             m[abs(c+a)] = true;
31             m[abs(c-a)] = true;
32             sum = m.size();
33             if (m[0]) sum--;
34             if (max < sum) max = sum;
35         }
36         for (i = 1; i < y/2; ++i)
37         {
38             a = i;
39             b = y - i;
40             c= x;
41             m.clear();
42             m[a] = m[b] = m[c] = true;
43             m[abs(a+b)] = m[abs(a+b-c)] = m[abs(a+b+c)] = true;
44             m[abs(a-b)] = m[abs(a-b+c)] = m[abs(a-b-c)] = true;
45             m[abs(c+b)] = m[abs(c+b-a)] = true;
46             m[abs(c-b)] = m[abs(c-b+a)] = m[abs(c-b-a)] = true;
47             m[abs(c+a)] = true;
48             m[abs(c-a)] = true;
49             sum = m.size();
50             if (m[0]) sum--;
51             if (max < sum) max = sum;
52         }
53         printf("%d\n", max);
54     }
55 
56     return 0;
57 }
View Code

 

posted @ 2013-05-19 00:09  1002liu  阅读(226)  评论(0编辑  收藏  举报