-
Notifications
You must be signed in to change notification settings - Fork 3
/
industrialspy.cpp
158 lines (147 loc) · 3.17 KB
/
industrialspy.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/**
* @brief Kattis - NAME
* @author Donald Dong (@donaldong)
* @date MM/DD/YYYY
*
* + Brute Force
* + Permutation
* + Prime number
*/
#include <algorithm>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <deque>
#include <iostream>
#include <map>
#include <queue>
#include <regex>
#include <set>
#include <sstream>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;
typedef unsigned int uint;
typedef long long int ll;
typedef unsigned long long int ull;
typedef long double ld;
#define hmap unordered_map
#define hset unordered_set
#define pq priority_queue
#define pb push_back
#define mp make_pair
#define putchar putchar_unlocked
#define rep(i, s, e) for (size_t i = s, fe__ = e; i < fe__; ++i)
inline void scan(int&);
inline void scan(ll&);
inline void print(uint);
inline void print(ull);
inline void print(string&);
vector<bool> P;
hset<int> used;
vector<string> solve(string &s, int &count) {
vector<string> res;
if (s.size() == 1) {
int n = s[0] - '0';
if (P[n] && used.find(n) == used.end()) {
++count;
used.insert(n);
}
res.pb(s);
return res;
}
rep(i, 0, s.size()) {
char cur = s[i];
string next = s;
next.erase(next.begin() + i);
auto r = solve(next, count);
for (string e : r) {
e = cur + e;
int k = stoi(e);
if (P[k] && used.find(k) == used.end()) {
++count;
used.insert(k);
}
res.pb(e);
}
}
return res;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
P = vector<bool>(1e8, true);
P[0] = P[1] = false;
for (int p=2; p * p < P.size(); ++p) {
if (P[p]) {
for (int i = p * p; i < P.size(); i += p) P[i] = false;
}
}
int T;
cin >> T;
while (T--) {
used.clear();
string s;
cin >> s;
int count = 0;
solve(s, count);
cout << count << endl;
}
return 0;
}
inline void scan(int &number) {
bool negative = false;
int c;
number = 0;
c = getchar();
if (c=='-') {
negative = true;
c = getchar();
}
for (; (c>47 && c<58); c=getchar()) number = number *10 + c - 48;
if (negative) number *= -1;
}
inline void scan(ll &number) {
bool negative = false;
int c;
number = 0;
c = getchar();
if (c=='-') {
negative = true;
c = getchar();
}
for (; (c>47 && c<58); c=getchar()) number = number *10 + c - 48;
if (negative) number *= -1;
}
inline void print(uint n) {
if (n == 0) {
putchar('0');
return;
}
char buf[11];
int i = 10;
while (n) {
buf[i--] = n % 10 + '0';
n /= 10;
}
while (i < 10) putchar(buf[++i]);
}
inline void print(ull n) {
if (n == 0) {
putchar('0');
return;
}
char buf[20];
int i = 19;
while (n) {
buf[i--] = n % 10 + '0';
n /= 10;
}
while (i < 19) putchar(buf[++i]);
}
inline void print(string &s) {
rep(i, 0, s.length()) putchar(s[i]);
}