# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
823492 |
2023-08-12T15:14:12 Z |
NK_ |
Toys (CEOI18_toy) |
C++17 |
|
1 ms |
212 KB |
// Success consists of going from failure to failure without loss of enthusiasm
#include <bits/stdc++.h>
using namespace std;
#define nl '\n'
#define pb push_back
#define sz(x) int(x.size())
template<class T> using V = vector<T>;
using vi = V<int>;
int main() {
cin.tie(0)->sync_with_stdio(0);
int N; cin >> N;
if (N == 1) {
cout << 1 << nl;
cout << 0 << nl;
return 0;
}
int X = N, G = 1;
vi D; unordered_map<int, int> I;
for(int i = 2; i * i <= X; i++) {
if (X % i == 0) {
while(X % i == 0) X /= i;
G *= i;
}
}
if (X > 1) G *= X;
for(int i = 1; i * i <= N; i++) {
if (N % i == 0) {
D.pb(i);
if (i*i != N) D.pb(N / i);
}
}
int M = sz(D);
sort(begin(D), end(D)); for(int i = 0; i < M; i++) I[D[i]] = i;
V<unordered_set<int>> ans(M);
function<void(int)> dnc = [&](int x) {
int i = I[x];
if (sz(ans[i])) return;
ans[i] = {x - 1};
for(int y = 2; y * y <= x; y++) {
if (x % y == 0) {
int g = __gcd(x, y);
if (g % G == 0) continue;
dnc(y); dnc(x / y);
int ai = I[y], bi = I[x / y];
// cout << "MERGE " << x << endl;
// cout << y << " " << sz(ans[ai]) << endl;
// cout << x / y << " " << sz(ans[bi]) << endl;
// cout << endl;
for(auto& a : ans[ai]) {
for(auto& b : ans[bi]) {
// cout << "-> " << a << " " << b << endl;
ans[i].insert(a + b);
}
}
}
}
// sort(begin(ans[i]), end(ans[i]));
// ans[i].erase(unique(begin(ans[i]), end(ans[i])), end(ans[i]));
};
dnc(N);
vi ANS(begin(ans.back()), end(ans.back()));
sort(begin(ANS), end(ANS));
cout << sz(ANS) << nl;
for(auto& x : ANS) cout << x << " ";
cout << nl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |