-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCommon.cc
193 lines (177 loc) · 3.99 KB
/
Common.cc
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#include "Common.h"
#include <vector>
#include <string>
#include <mutex>
using namespace std;
#ifdef ZAMAN
thread_local __zaman__ __zaman_thread__;
std::map<std::string, uint64_t> __zaman__::times_global;
std::string __zaman__::prefix_global;
std::mutex __zaman__::mtx;
#endif
inline string int2str (int64_t k)
{
assert(k >= 0);
string s;
while (k) {
s = char(k % 10 + '0') + s;
k /= 10;
}
return s;
}
std::vector<std::string> intCache;
std::vector<std::string> intCache0;
void initCache()
{
const int MAXCACHE = 10000; // must be power of 10, otherwise good luck
const int LOGCACHE = 4; // # of digits(cache) - 1
intCache.resize(MAXCACHE);
intCache[0] = "0";
intCache0.resize(MAXCACHE);
intCache0[0] = string(LOGCACHE, '0');
for (int64_t i = 1; i < MAXCACHE; i++) {
intCache[i] = int2str(i);
intCache0[i] = string(LOGCACHE - intCache[i].size(), '0') + intCache[i];
}
}
void inttostr (int64_t k, FILE *f)
{
if (k < 0) fputc('-', f), k = -k;
if (k < intCache.size())
fputs(intCache[k].c_str(), f);
else {
string s[5]; int i = 0;
while (k >= intCache.size()) {
s[i++] = intCache0[k % intCache.size()];
k /= intCache.size();
}
fputs(intCache[k].c_str(), f);
while (i) fputs(s[--i].c_str(), f);
}
}
void inttostr (int64_t k, string &r)
{
if (k < 0) r += "-", k = -k;
if (k < intCache.size())
r += intCache[k];
else{
string s[5]; int i = 0;
while (k >= intCache.size()) {
s[i++] = intCache0[k % intCache.size()];
k /= intCache.size();
}
r += intCache[k];
while (i) r += s[--i];
}
}
string xtoa (int64_t k)
{
string r;
if (k < 0) r += "-", k = -k;
if (k < intCache.size())
r += intCache[k];
else{
string s[5]; int i = 0;
while (k >= intCache.size()) {
s[i++] = intCache0[k % intCache.size()];
k /= intCache.size();
}
r += intCache[k];
while (i) r += s[--i];
}
return r;
}
char getDNAValue (char ch)
{
#define _ 5
static char c[128] = {
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,// 0 15
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,// 16 31
_,_,_,_,_,_,_,_,_,_,_,_,_,_,0,_,// 32 47
_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,// 48 63
_,1,_,2,_,_,_,3,_,_,_,_,_,_,_,_,// 64 79
_,_,_,_,4,_,_,_,_,_,_,_,_,_,_,_,// 80 95
_,1,_,2,_,_,_,3,_,_,_,_,_,_,_,_,// 96 111
_,_,_,_,4,_,_,_,_,_,_,_,_,_,_,_,// 112 127
};
#undef _
return c[ch];
}
void addEncoded (size_t n, Array<uint8_t> &o, uint8_t offset)
{
n += offset;
assert(n != offset);
if (n < (1 << 8)) {
o.add(n);
} else if (n < (1 << 16)) {
o.add(offset);
o.add((n >> 8) & 0xff);
o.add(n & 0xff);
} else {
REPEAT(2) o.add(offset);
o.add((n >> 24) & 0xff);
o.add((n >> 16) & 0xff);
o.add((n >> 8) & 0xff);
o.add(n & 0xff);
}
}
ssize_t getEncoded (uint8_t *&len, uint8_t offset)
{
int T = 1;
if (*len == offset) T = 2, len++;
if (*len == offset) T = 4, len++;
ssize_t size = 0;
REPEAT(T) size |= *len++ << (8 * (T-_-1));
assert(size != offset);
size -= offset;
return size;
}
int packInteger(uint64_t num, Array<uint8_t> &o)
{
if (num < (1 << 8)) {
o.add(num & 0xff);
return 0;
} else if (num < (1 << 16)) {
REPEAT(2) o.add(num & 0xff), num >>= 8;
return 1;
} else if (num < (1 << 24)) {
REPEAT(3) o.add(num & 0xff), num >>= 8;
return 2;
} else if (num < (1ll << 32)) {
REPEAT(4) o.add(num & 0xff), num >>= 8;
return 3;
} else {
REPEAT(8) o.add(num & 0xff), num >>= 8;
return 4;
}
}
uint64_t unpackInteger(int T, Array<uint8_t> &i, size_t &ii)
{
uint64_t e = 0;
if (T == 4) T += 3;
REPEAT(T + 1) e |= (uint64_t)(i.data()[ii++]) << (8 * _);
return e;
}
string S (const char* fmt, ...)
{
char *ptr = 0;
va_list args;
va_start(args, fmt);
vasprintf(&ptr, fmt, args);
va_end(args);
string s = ptr;
free(ptr);
return s;
}
template<>
size_t sizeInMemory(std::string t) {
size_t sz = 0;
for (int i = 0; i < t.capacity(); i++)
sz += sizeInMemory(*(&t[0] + i));
return sizeof(t) + t.capacity();
}
bool intersect(size_t a, size_t b, size_t x, size_t y)
{
//LOG("intersect %d %d ... %d %d", a, b, x, y);
return min(b, y) >= max(a, x);
}