# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
458177 | cpp219 | Toys (CEOI18_toy) | C++14 | 5057 ms | 33060 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 optimization O2
#pragma GCC optimization "unroll-loop"
#pragma target ("avx2")
#include <bits/stdc++.h>
#define ll int
#define ld long double
#define fs first
#define sc second
using namespace std;
typedef pair<ll,ll> LL;
const ll N = 1e5 + 9;
const ll Log2 = 21;
const ll inf = 1e9 + 7;
map<LL,ll> mp;
vector<ll> uoc,ans;
ll n;
void f(ll rm,ll sum){
if (mp.count({rm,sum})) return;
mp[{rm,sum}] = 1;
if (rm == 1) ans.push_back(sum);
for (auto i : uoc) if (rm % i == 0) f(rm/i,sum + i - 1);
}
int main(){
ios_base::sync_with_stdio(NULL); cin.tie(0); cout.tie(0);
#define task "tst"
if (fopen(task".INP","r")){
freopen(task".INP","r",stdin);
//freopen(task".OUT","w",stdout);
}
cin>>n; uoc.push_back(n);
for (ll i = 2;i <= n/i;i++){
if (n%i == 0){
uoc.push_back(i);
if (n/i != i) uoc.push_back(n/i);
}
}
f(n,0);
sort(ans.begin(),ans.end()); cout<<ans.size()<<"\n";
for (auto i : ans) cout<<i<< " ";
}
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... |