-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathEllysFractions.cpp
125 lines (97 loc) · 2.57 KB
/
EllysFractions.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// BEGIN CUT HERE
/*
// TCO12 Round 1A Medium (500)
問題
約分できない分数A/Bを既約分数と呼ぶ。
A×Bがnの階乗で表せるとき、それを「階乗分数」と呼ぶことにする。
数Nが与えられるとき、A×BがN!以下の階乗分数の総数を求める。
*/
// END CUT HERE
#include <cmath>
#include <algorithm>
#include <list>
#include <map>
#include <set>
#include <string>
#include <vector>
#include <iostream>
#include <sstream>
using namespace std;
typedef long long LL;
static int p[] = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53,
59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137,
139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223,
227, 229, 233, 239, 241, 251};
class EllysFractions {
public:
long long getCount(int N) {
if (N < 2) {
return 0;
}
LL res = 1;
int i;
int f[256] = {};
for (i = 0; i < (sizeof(p)/sizeof(p[0])); ++i) {
f[p[i]] = 1;
}
LL cnt = 1;
for (i = 3; i <= N; ++i) {
if (f[i]) {
cnt *= 2;
}
res += cnt;
}
return res;
}
// BEGIN CUT HERE
private:
template <typename T> string print_array(const vector<T> &V) { ostringstream os; os << "{ "; for (typename vector<T>::const_iterator iter = V.begin(); iter != V.end(); ++iter) os << '\"' << *iter << "\","; os << " }"; return os.str(); }
void verify_case(int Case, const long long &Expected, const long long &Received) { cerr << "Test Case #" << Case << "..."; if (Expected == Received) cerr << "PASSED" << endl; else { cerr << "FAILED" << endl; cerr << "\tExpected: \"" << Expected << '\"' << endl; cerr << "\tReceived: \"" << Received << '\"' << endl; } }
public:
void run_test(int Case) {
int n = 0;
// test_case_0
if ((Case == -1) || (Case == n)){
int Arg0 = 1;
long long Arg1 = 0LL;
verify_case(n, Arg1, getCount(Arg0));
}
n++;
// test_case_1
if ((Case == -1) || (Case == n)){
int Arg0 = 2;
long long Arg1 = 1LL;
verify_case(n, Arg1, getCount(Arg0));
}
n++;
// test_case_2
if ((Case == -1) || (Case == n)){
int Arg0 = 3;
long long Arg1 = 3LL;
verify_case(n, Arg1, getCount(Arg0));
}
n++;
// test_case_3
if ((Case == -1) || (Case == n)){
int Arg0 = 5;
long long Arg1 = 9LL;
verify_case(n, Arg1, getCount(Arg0));
}
n++;
// test_case_4
if ((Case == -1) || (Case == n)){
int Arg0 = 100;
long long Arg1 = 177431885LL;
verify_case(n, Arg1, getCount(Arg0));
}
n++;
}
// END CUT HERE
};
// BEGIN CUT HERE
int main() {
EllysFractions ___test;
___test.run_test(-1);
return 0;
}
// END CUT HERE