# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
872786 | bobbilyking | Toys (CEOI18_toy) | C++17 | 5046 ms | 65192 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#pragma GCC target ("avx2")
#pragma GCC optimize ("O3")
#pragma GCC optimize ("unroll-loops")
#include<bits/stdc++.h>
#include<math.h>
using namespace std;
typedef int ll;
typedef long double ld;
typedef pair<ll, ll> pl;
#define K first
#define V second
#define G(x) ll x; cin >> x;
#define GD(x) ld x; cin >> x;
#define GS(s) string s; cin >> s;
#define EX(x) { cout << x << '\n'; exit(0); }
#define A(a) (a).begin(), (a).end()
#define F(i, l, r) for (ll i = (l); i < r; ++i)
#define NN
#define M 1000000007 // 998244353
set<ll> vis;
set<pair<vector<pl>, ll>> dp;
void dfs(vector<pl> facs, ll sm){
ll ans = 0;
for (const auto &[k, v]: facs) ans += v;
if (!ans) {
vis.insert(sm); return;
}
if (dp.count({facs, sm})) return;
dp.emplace(facs, sm);
auto gen = [&](auto&& self, ll idx, ll csm) {
if (idx == facs.size()) {
dfs(facs, csm + sm - 1);
return;
}
ll prod = 1;
F(j, 0, facs[idx].V+1) {
facs[idx].V -= j;
self(self, idx+1, prod * csm);
prod = prod * facs[idx].K;
facs[idx].V += j;
}
};
gen(gen, 0, 1);
}
int main(){
// freopen("a.in", "r", stdin);
// freopen("a.out", "w", stdout);
ios_base::sync_with_stdio(false); cin.tie(0);
cout << fixed << setprecision(20);
vector<pl> facs;
G(n)
for (ll i = 2; i *i <=n ;++i) if (n%i == 0) {
ll cnt = 0;
while (n%i==0) cnt++, n/=i;
facs.emplace_back(i, cnt);
}
if (n-1) facs.emplace_back(n, 1);
dfs(facs, 0);
cout << vis.size() << '\n';
for (auto x: vis) cout << x << " "; cout << '\n';
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |