-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrationalSpiral.cpp
139 lines (118 loc) · 2.54 KB
/
rationalSpiral.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <bitset>
#include <cstdlib>
#include <ctime>
#include <functional>
#include <iostream>
#include <fstream>
#include <queue>
#include <set>
using namespace std;
ifstream fin("rationalSpiral.in");
ofstream fout("rationalSpiral.out");
struct number
{
int id;
int a;
int b;
string ans;
bool operator<(const number & newtest1) const
{
return ans < newtest1.ans;
};
};
bool mySortFunc (number &i,number &j)
{
return i.id<j.id;
}
int gcd(int a, int b)
{
while(b != 0)
{
int r = b;
b = a % b;
a = r;
}
return a;
}
int main()
{
set<number> a;
int y = 0, x = 0, count0 = 1, direction = 0;
bool count1 = 0;
while (a.size() <= 510000)
{
for (int i = 1; i <= count0; ++i)
{
if (direction == 0)
{
++y;
}
else if (direction == 1)
{
++x;
}
else if (direction == 2)
{
--y;
}
else
{
--x;
}
if (a.size() == 8)
{
cout << "";
}
int tempY = y, tempX = x;
if (tempX == 0)
{
continue;
}
int divide = gcd(tempY, tempX);
tempY /= divide;
tempX /= divide;
if (tempX < 0)
{
tempY *= - 1;
tempX *= -1;
}
int size = a.size();
string tempString = to_string(tempY) + "," + to_string(tempX);
number temp{size, tempY, tempX,tempString};
a.insert(temp);
}
if (count1 == false)
{
count1 = true;
}
else
{
++count0;
count1 = false;
}
++direction;
direction %= 4;
}
vector<number> store;
for (set<number>::iterator it=a.begin(); it!=a.end(); ++it)
{
store.push_back(*it);
}
sort(store.begin(),store.end(),mySortFunc);
while (true)
{
int in = -1;
fin >> in;
if (in == -1)
{
break;
}
fout << store[in].a << " / " << store[in].b << '\n';
}
return 0;
}