結果
| 問題 |
No.375 立方体のN等分 (1)
|
| コンテスト | |
| ユーザー |
はむこ
|
| 提出日時 | 2016-08-10 09:03:34 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 419 ms / 5,000 ms |
| コード長 | 6,669 bytes |
| コンパイル時間 | 2,125 ms |
| コンパイル使用メモリ | 185,864 KB |
| 実行使用メモリ | 71,972 KB |
| 最終ジャッジ日時 | 2024-11-07 08:31:01 |
| 合計ジャッジ時間 | 4,288 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 32 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef _WIN32
#define scanfll(x) scanf("%I64d", x)
#define printfll(x) printf("%I64d", x)
#else
#define scanfll(x) scanf("%lld", x)
#define printfll(x) printf("%lld", x)
#endif
#define rep(i,n) for(long long i = 0; i < (long long)(n); i++)
#define repi(i,a,b) for(long long i = (long long)(a); i < (long long)(b); i++)
#define pb push_back
#define all(x) (x).begin(), (x).end()
#define fi first
#define se second
#define mt make_tuple
#define mp make_pair
template<class T1, class T2> bool chmin(T1 &a, T2 b) { return b < a && (a = b, true); }
template<class T1, class T2> bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }
using ll = long long; using ld = long double; using vll = vector<ll>; using vvll = vector<vll>; using vld = vector<ld>;
using vi = vector<int>; using vvi = vector<vi>;
vll conv(vi& v) { vll r(v.size()); rep(i, v.size()) r[i] = v[i]; return r; }
using P = pair<ll, ll>;
template <typename T, typename U> ostream &operator<<(ostream &o, const pair<T, U> &v) { o << "(" << v.first << ", " << v.second << ")"; return o; }
template<size_t...> struct seq{}; template<size_t N, size_t... Is> struct gen_seq : gen_seq<N-1, N-1, Is...>{}; template<size_t... Is> struct gen_seq<0, Is...> : seq<Is...>{};
template<class Ch, class Tr, class Tuple, size_t... Is>
void print_tuple(basic_ostream<Ch,Tr>& os, Tuple const& t, seq<Is...>){ using s = int[]; (void)s{0, (void(os << (Is == 0? "" : ", ") << get<Is>(t)), 0)...}; }
template<class Ch, class Tr, class... Args>
auto operator<<(basic_ostream<Ch, Tr>& os, tuple<Args...> const& t) -> basic_ostream<Ch, Tr>& { os << "("; print_tuple(os, t, gen_seq<sizeof...(Args)>()); return os << ")"; }
ostream &operator<<(ostream &o, const vvll &v) { rep(i, v.size()) { rep(j, v[i].size()) o << v[i][j] << " "; cout << endl; } return o; }
template <typename T> ostream &operator<<(ostream &o, const vector<T> &v) { o << '['; rep(i, v.size()) o << v[i] << (i != v.size()-1 ? ", " : ""); o << "]"; return o; }
template <typename T> ostream &operator<<(ostream &o, const set<T> &m) { o << '['; for (auto it = m.begin(); it != m.end(); it++) o << *it << (next(it) != m.end() ? ", " : ""); o << "]"; return o; }
template <typename T, typename U> ostream &operator<<(ostream &o, const map<T, U> &m) { o << '['; for (auto it = m.begin(); it != m.end(); it++) o << *it << (next(it) != m.end() ? ", " : ""); o << "]"; return o; }
template <typename T, typename U> ostream &operator<<(ostream &o, const unordered_map<T, U> &m) { o << '['; for (auto it = m.begin(); it != m.end(); it++) o << *it; o << "]"; return o; }
void printbits(ll mask, ll n) { rep(i, n) { cout << !!(mask & (1ll << i)); } cout << endl; }
#define ldout fixed << setprecision(40)
static const double EPS = 1e-14;
static const long long INF = 1e18;
static const long long mo = 1e9+7;
/**********************************************************/
// 前処理ありの素数判定
// 素数の最大値Mに対して先にconstructPrimesList(M)が必須!
/**********************************************************/
// O(n log n)
void sieve_of_eratosthenes(vector<ll>& primes, ll n) {
primes.resize(n);
for (ll i = 2; i < n; ++i)
primes[i] = i;
for (ll i = 2; i*i < n; ++i)
if (primes[i])
for (ll j = i*i; j < n; j+=i)
primes[j] = 0;
}
void getPrimesList(ll n, vector<ll>& primes_list) {
vector<ll> tmpList;
primes_list.clear(); primes_list.resize(0); primes_list.reserve(n / 5);
sieve_of_eratosthenes(tmpList, n);
rep(i, n) {
if (tmpList[i])
primes_list.push_back(i);
}
}
// 素数テーブル構築: O(n log n)
vector<ll> primesList; // 素数リスト(primesListMaxまで)。こいつ自体を使うことあるかも。
set<ll> primesSet;
ll primesListMax;
void constructPrimesList(ll n) {
if (primesListMax >= n)
return;
primesListMax = n;
getPrimesList(n, primesList);
for (ll i = 0; i < primesList.size(); i++) {
primesSet.insert(primesList[i]);
}
}
// constructされていないなら、O(n log n)
// constructされているなら、O(log n)
bool isPrimeLookup(ll n) {
return primesSet.count(n);
}
// constructされていないなら、O(sqrt(n) log n)
// constructされているなら、O(log n)
// Divisor系は、最大nをMAXNとしてconstructPrimesList(sqrt(MAXN))で早くなる
void getPrimeFactorizationList(ll n, vector<ll>& divisors_list) {
divisors_list.clear(); divisors_list.resize(0);
if (n <= 1) return;
ll prime = 2;
while (n >= prime * prime) {
if (n % prime == 0) {
divisors_list.push_back(prime);
n /= prime;
} else {
prime++;
}
}
divisors_list.push_back(n);
}
// constructされていないなら、O(sqrt(n) log n)
// constructされているなら、O(log n)
// Divisor系は、最大nをMAXNとしてconstructPrimesList(sqrt(MAXN))で早くなる
void getDivisorsList(ll n, vector<ll>& divisors_list) {
divisors_list.clear(); divisors_list.resize(0);
vector<ll> fac_list;
getPrimeFactorizationList(n, fac_list);
map<ll, ll> counter;
for (auto x : fac_list)
counter[x]++;
divisors_list.push_back(1);
for (auto x : counter) {
ll tmp_size = divisors_list.size();
ll p = 1;
for (ll i = 0; i < x.second; i++) {
p *= x.first;
for (ll j = 0; j < tmp_size; j++)
divisors_list.push_back(divisors_list[j] * p);
}
}
sort(divisors_list.begin(), divisors_list.end());
}
// constructされていないなら、O(sqrt(n) log n)
// constructされているなら、O(log n)
ll getDivisorsNum(ll n) {
vector<ll> divisors_list; getPrimeFactorizationList(n, divisors_list);
map<ll, ll> num;
for (ll i = 0; i < divisors_list.size(); i++) {
num[divisors_list[i]]++;
}
ll p = 1;
for (auto x : num) {
p *= x.second + 1;
}
return p;
}
int main(void) {
cin.tie(0); ios::sync_with_stdio(false);
ll n; cin >> n;
constructPrimesList(100000);
vll f;
getPrimeFactorizationList(n, f);
// cout << f << endl;
set<P> s, s_next;
s_next.insert(P(1, 1));
rep(i, f.size()) {
s.clear();
swap(s, s_next);
for (auto x : s) {
s_next.insert(x);
s_next.insert(P(x.fi*f[i], x.se));
s_next.insert(P(x.fi, x.se*f[i]));
}
}
ll ret = INF;
for (auto x : s_next) {
chmin(ret, x.fi + x.se + n / x.fi / x.se - 3);
}
cout << ret << " " << n - 1 << endl;
return 0;
}
はむこ