solution.md 1.6 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 分数
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3 4
1/1 + 1/2 + 1/4 + 1/8 + 1/16 + … 每项是前一项的一半,如果一共有20项,求这个和是多少,结果用分数表示出来。  
类似:3/2  
每日一练社区's avatar
每日一练社区 已提交
5

每日一练社区's avatar
每日一练社区 已提交
6 7
当然,这只是加了前2项而已。分子分母要求互质。  

每日一练社区's avatar
每日一练社区 已提交
8
下面哪一项是<span style="color:red">错误</span>的?
每日一练社区's avatar
每日一练社区 已提交
9

每日一练社区's avatar
每日一练社区 已提交
10
## aop
F
fix bug  
feilong 已提交
11

每日一练社区's avatar
每日一练社区 已提交
12
### before
F
fix bug  
feilong 已提交
13

每日一练社区's avatar
每日一练社区 已提交
14
```c
每日一练社区's avatar
每日一练社区 已提交
15 16 17
#include <bits/stdc++.h>
using namespace std;
```
每日一练社区's avatar
每日一练社区 已提交
18

每日一练社区's avatar
每日一练社区 已提交
19
### after
F
fix bug  
feilong 已提交
20

每日一练社区's avatar
每日一练社区 已提交
21
```c
每日一练社区's avatar
每日一练社区 已提交
22

每日一练社区's avatar
每日一练社区 已提交
23 24 25
```

## 答案
F
fix bug  
feilong 已提交
26

每日一练社区's avatar
每日一练社区 已提交
27
```c
每日一练社区's avatar
每日一练社区 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40
long pow_2(int b)
{
    long x = 2;
    long res = 1;
    while (b > 0)
    {
        if (b & 1)
            res *= x;
        b >>= 1;
        x = x * x;
    }
    return res;
}
每日一练社区's avatar
每日一练社区 已提交
41 42 43 44 45 46 47 48 49 50 51

int gcd(long a, long b)
{
    if (b == 0)
        return a;
    return gcd(b, a % b);
}
int main()
{
    cout << pow_2(20) << "/" << pow_2(19) << endl;
}
每日一练社区's avatar
每日一练社区 已提交
52 53 54
```
## 选项

F
fix bug  
feilong 已提交
55

每日一练社区's avatar
每日一练社区 已提交
56
### A
F
fix bug  
feilong 已提交
57

每日一练社区's avatar
每日一练社区 已提交
58
```c
每日一练社区's avatar
每日一练社区 已提交
59 60 61 62 63 64 65 66
long pow_2(int b)
{
    long x = 2;
    long res = 1;
    while (b > 0)
    {
        if (b & 1)
            res *= x;
每日一练社区's avatar
每日一练社区 已提交
67
        b >>= 1;
每日一练社区's avatar
每日一练社区 已提交
68 69 70 71
        x = x * x;
    }
    return res;
}
每日一练社区's avatar
每日一练社区 已提交
72 73 74 75 76 77 78 79 80 81 82

int gcd(long a, long b)
{
    if (b == 0)
        return a;
    return gcd(b, a % b);
}
int main()
{
    cout << pow_2(20) - 1 << "/" << pow_2(19) << endl;
}
每日一练社区's avatar
每日一练社区 已提交
83 84 85
```

### B
F
fix bug  
feilong 已提交
86

每日一练社区's avatar
每日一练社区 已提交
87
```c
每日一练社区's avatar
每日一练社区 已提交
88
int gcd(int a, int b)
每日一练社区's avatar
每日一练社区 已提交
89
{
每日一练社区's avatar
每日一练社区 已提交
90 91 92 93 94 95 96 97 98
    return a % b ? gcd(b, a % b) : b;
}

int main()
{
    int a = 1048575, b = 524288;
    int t = gcd(a, b);
    cout << a / t << "/" << b / t << endl;
    return 0;
每日一练社区's avatar
每日一练社区 已提交
99 100 101 102
}
```

### C
F
fix bug  
feilong 已提交
103

每日一练社区's avatar
每日一练社区 已提交
104
```c
每日一练社区's avatar
每日一练社区 已提交
105
int gcd(int a, int b)
每日一练社区's avatar
每日一练社区 已提交
106 107 108
{
    while (b > 0)
    {
每日一练社区's avatar
每日一练社区 已提交
109 110 111 112
        int c;
        c = a % b;
        a = b;
        b = c;
每日一练社区's avatar
每日一练社区 已提交
113
    }
每日一练社区's avatar
每日一练社区 已提交
114 115 116 117 118 119 120 121 122 123 124
    return a;
}
int main()
{
    int a = 1048575;
    int b = 524288;
    int c = gcd(a, b);

    cout << a / c << "/" << b / c << endl;

    return 0;
每日一练社区's avatar
每日一练社区 已提交
125 126
}
```