-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbit.cpp
76 lines (67 loc) · 1.66 KB
/
bit.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
/*********************************************************
File Name:bit.cpp
Author: Abby Cin
Mail: [email protected]
Created Time: Sat 01 Oct 2016 09:58:50 AM CST
**********************************************************/
#include <iostream>
#include <chrono>
#include <bitset>
int main(int argc, char *argv[])
{
if (argc != 3) {
fprintf(stderr, "%s input output\n", argv[0]);
return 1;
}
auto beg = std::chrono::steady_clock::now();
const int size = 1'000'000;
const int max_scan = size / 2 + 1;
std::bitset<max_scan> bit_map;
bit_map.reset();
int duplicate[max_scan] = { 0 };
FILE *fin = fopen(argv[1], "r");
int n;
while (fscanf(fin, "%d\n", &n) != EOF) {
if (n < max_scan) {
if (bit_map.test(n))
duplicate[n] += 1;
else
bit_map.set(n, true);
}
}
FILE *fout = fopen(argv[2], "w");
int i;
for (i = 0; i < max_scan; ++i) {
if (bit_map[i] == true) {
for (int j = 0; j < duplicate[i]; ++j)
fprintf(fout, "%d\n", i);
fprintf(fout, "%d\n", i);
}
}
fseek(fin, 0, SEEK_SET);
bit_map.reset();
for (i = 0; i < max_scan; ++i)
duplicate[i] = 0;
while (fscanf(fin, "%d\n", &n) != EOF) {
if (n >= max_scan && n <= size) {
n -= max_scan;
if (bit_map.test(n))
duplicate[n] += 1;
else
bit_map.set(n, true);
}
}
for (i = 0; i < max_scan; ++i) {
if (bit_map[i] == true) {
for (int j = 0; j < duplicate[i]; ++j)
fprintf(fout, "%d\n", i + max_scan);
fprintf(fout, "%d\n", i + max_scan);
}
}
fclose(fin);
fclose(fout);
auto end = std::chrono::steady_clock::now();
auto dur = std::chrono::duration_cast<std::chrono::milliseconds>(end -
beg);
std::cout << dur.count() << "ms\n";
}