-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathg_heaps2_2.cpp
More file actions
131 lines (105 loc) · 2.26 KB
/
Copy pathg_heaps2_2.cpp
File metadata and controls
131 lines (105 loc) · 2.26 KB
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
126
127
128
129
130
131
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <set>
#include <vector>
using namespace std;
#define PROBLEM_IN_FILE "heaps2.in"
#define PROBLEM_OUT_FILE "heaps2.out"
int alreadyCalculated[1000001];
bool needToBeCalculated_Arr[1000001];
int a[30];
int n_size[10001];
// k < 30
int used[30];
int cc = 1;
set<int> needToBeCalculated;
class G_heaps2 {
public:
void start() {
reading();
work();
writing();
}
void reading() {
FILE* in = fopen(PROBLEM_IN_FILE, "r");
fscanf(in, "%d", &k);
minA = 1000001;
for (int i = 0; i < k; i++) {
fscanf(in, "%d", a + i);
if (a[i] < minA)
minA = a[i];
}
fscanf(in, "%d", &m);
maxN = 0;
for (int i = 0; i < m; i++) {
fscanf(in, "%d", n_size + i);
if (n_size[i] > maxN)
maxN = n_size[i];
}
fclose(in);
}
void writing() {
FILE* out = fopen(PROBLEM_OUT_FILE, "w");
for (int i = 0; i < m; i++)
if ((alreadyCalculated[n_size[i]] - 1) != 0) {
fprintf(out, "First\n");
} else {
fprintf(out, "Second\n");
}
fclose(out);
}
void work() {
createVectorOfThatNeedToBeCalculated();
for (set<int>::iterator it = needToBeCalculated.begin();
it != needToBeCalculated.end(); it++)
{
func(*it);
}
}
int func(int n) {
if ((alreadyCalculated[n] - 1) != -1)
return alreadyCalculated[n] - 1;
// на данный момент все меньшие должны быть уже посчитаны
cc++;
for (int i = 0; i < k; i++) {
if (n - a[i] >= 0) {
//int tmp = func(n - a[i]);
int tmp = alreadyCalculated[n - a[i]] - 1;
if (tmp < k + 3)
used[tmp] = cc;
}
}
for (int i = 0; ; i++) {
if (used[i] < cc) {
alreadyCalculated[n] = i + 1;
return i;
}
}
}
void createVectorOfThatNeedToBeCalculated() {
for (int i = 0; i < m; i++) {
calcForThis(n_size[i]);
}
}
void calcForThis(int number) {
if (needToBeCalculated_Arr[number])
return;
needToBeCalculated.insert(number);
needToBeCalculated_Arr[number] = true;
for (int i = 0; i < k; i++) {
if (number - a[i] >= 0) {
calcForThis(number - a[i]);
}
}
}
private:
int k;
int minA;
int m;
int maxN;
};
int main() {
G_heaps2 heap;
heap.start();
}