結果
問題 | No.376 立方体のN等分 (2) |
ユーザー | kurenai3110 |
提出日時 | 2016-12-20 16:42:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,154 bytes |
コンパイル時間 | 705 ms |
コンパイル使用メモリ | 80,012 KB |
実行使用メモリ | 13,880 KB |
最終ジャッジ日時 | 2024-05-08 08:41:52 |
合計ジャッジ時間 | 7,575 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
9,888 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <map> #include <algorithm> #include <cmath> using namespace std; pair<long long,long long> solve(long long n){ long long tmin=n-1; vector<pair<int,int>>X; X.push_back(make_pair(1,n)); vector<pair<long long,int>>div; for(int i=2;i*i<=n;i++){ int cnt=0; while(!(n%i)){ n/=i; cnt++; } if(cnt) div.push_back(make_pair(i,cnt)); } if(n!=1)div.push_back(make_pair(n,1)); for(int i=0;i<div.size();i++){ int Xsize=X.size(); for(int j=0;j<Xsize;j++){ for(int k=0;k<div[i].second;k++){ X.push_back(make_pair(X[j].first*pow(div[i].first,k+1),X[j].second/pow(div[i].first,k+1))); } } } int ti=0; for(int i=0;i<X.size();i++){ if(tmin > X[i].first+X[i].second-2){ tmin = X[i].first+X[i].second-2; ti=i; } } return X[ti]; } int main() { long long n;cin>>n; long long tmax=n-1; pair<long long,long long>d1 = solve(n); pair<long long,long long>d2 = solve(d1.first); pair<long long,long long>d3 = solve(d1.second); long long tmin = min(d1.first + d3.first + d3.second -3,d1.second + d2.first + d2.second -3); cout<<tmin<<" "<<tmax<<endl; return 0; }