結果
| 問題 |
No.376 立方体のN等分 (2)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-06-05 02:10:34 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 113 ms / 5,000 ms |
| コード長 | 837 bytes |
| コンパイル時間 | 1,805 ms |
| コンパイル使用メモリ | 173,856 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-06 22:03:21 |
| 合計ジャッジ時間 | 5,941 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 38 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
vector<ull> divisor(ull n) {
vector<ull> res;
for (ull i = 1; i * i <= n; i++) {
if (n % i == 0) {
res.emplace_back(i);
res.emplace_back(n / i);
}
}
sort(res.begin(), res.end());
return res;
}
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
ull n;
cin >> n;
ull tmax = n - 1;
ull tmin = tmax;
vector<ull> d = divisor(n);
for (int i = 0; d[i] * d[i] * d[i] <= n; i++) {
ull tmp = n / d[i];
for (int j = d.size() - 1; j >= 0; j--) {
if (d[j] * d[j] > tmp || tmp % d[j]) continue;
tmin = min(tmin, d[i] + d[j] + tmp / d[j] - 3);
break;
}
}
cout << tmin << " " << tmax << "\n";
return 0;
}