-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsolve.cpp
64 lines (64 loc) · 1.31 KB
/
solve.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <vector>
#include <string>
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
using namespace std;
int gcd(int a, int b)
{
if (a < b)
return gcd(b, a);
if (b == 0)
return a;
if ((a & 0x1) == 0) {
if ((b & 0x1) == 0)
return gcd(a >> 1, b >> 1) << 1;
else
return gcd(a >> 1, b);
} else {
if ((b & 0x1) == 0)
return gcd(a, b >> 1);
else
return gcd(b, a - b);
}
}
class Solution {
public:
vector<int> getRow(int n) {
vector<int> result(n + 1, 0);
result[0] = 1;
for (int i = 1; i <= n; ++i) { // 必须约分, 否则溢出
int molecular = (n - i + 1), denominator = i;
int g = gcd(molecular, denominator);
molecular /= g;
denominator /= g;
int multiplier = result[i - 1];
g = gcd(multiplier, denominator);
multiplier /= g;
denominator /= g;
int value = multiplier * molecular / denominator;
result[i] = value;
}
return result;
}
};
void print(vector<vector<int>> v) {
for (auto i : v) {
for_each(begin(i), end(i), [](int i){cout << i << ' ';});
cout << endl;
}
}
void print(vector<int> v) {
for_each(v.begin(), v.end(), [](int i){cout << i << ' ';});
cout << endl;
}
int main(int argc, char **argv)
{
Solution solution;
int n;
while (scanf("%d", &n) != EOF) {
print(solution.getRow(n));
}
return 0;
}