結果
問題 | No.376 立方体のN等分 (2) |
ユーザー | IL_msta |
提出日時 | 2017-02-16 21:42:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,108 bytes |
コンパイル時間 | 1,422 ms |
コンパイル使用メモリ | 121,180 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 12:57:12 |
合計ジャッジ時間 | 2,582 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 6 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 5 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 36 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 10 ms
5,376 KB |
testcase_32 | AC | 34 ms
5,376 KB |
testcase_33 | AC | 48 ms
5,376 KB |
testcase_34 | AC | 25 ms
5,376 KB |
testcase_35 | AC | 26 ms
5,376 KB |
testcase_36 | AC | 48 ms
5,376 KB |
testcase_37 | AC | 49 ms
5,376 KB |
testcase_38 | AC | 15 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
ソースコード
#ifdef __GNUC__ #pragma GCC optimize ("O3") #pragma GCC target ("avx") #endif #define _USE_MATH_DEFINES #include <iostream> #include <iomanip> #include <stdio.h> #include <sstream> #include <algorithm> #include <cmath> #include <string> #include <cstring> #include <vector> #include <valarray> //#include <array>//x C++ (G++ 4.6.4) #include <queue> #include <complex> #include <set> #include <map> #include <stack> #include <list> #include <cassert>//assert(); #include <fstream> #include <random> ///////// #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) ///////// typedef long long LL; typedef long double LD; typedef unsigned long long ULL; #define PII pair<int,int> ///////// using namespace::std; // 最大公約数 template<class T> inline T gcd(T a, T b){return b == 0 ? a : gcd(b, a % b);} // 最小公倍数 template<class T> inline T lcm(T a, T b){return a * b / gcd(a, b);} //////////////////////////////// vector<LL> SerNum; vector<LL> SerVal(3,0); int MaxDepth; LL MinDfs = (LL)100000000000000; //pos, void dfs(int pos, vector<LL>& vv){ if( pos >= MaxDepth ){ if( vv[0] == 1 || vv[1] == 1 || vv[2] == 1 ) return; LL temp = vv[0]+vv[1]+vv[2]; if( temp < MinDfs ){ MinDfs = temp; SerVal = vv; } return; } if( MinDfs < vv[0]+vv[1]+vv[2] ) return; for(int i=0;i<3;++i){ vv[i] *= SerNum[pos]; dfs(pos+1,vv); vv[i] /= SerNum[pos]; } } inline void solve(){ LL N; cin >> N; int CountAll = 0; int Count = 0; vector<LL> prime; vector<int> P; LL T = N; if( T % 2 == 0 ){ prime.push_back(2); P.push_back(0); while(T%2 == 0 ){ T /= 2; P[Count]++; ++CountAll; } ++Count; } for(LL i=3;i*i<=T;i+=2){ if( T % i == 0 ){ prime.push_back(i); P.push_back(0); while( T% i == 0 ){ T /= i; P[Count]++; ++CountAll; } ++Count; } } if( T != 1 ){ prime.push_back(T); P.push_back(1); ++Count; ++CountAll; } T = 0; // if( CountAll == 1 ){ cout << N-1 << ' ' << N-1 << endl; return; } if( CountAll == 2){ vector<LL> ans(3); for(int i=0;i<Count;++i){ if(P[i]){ ans[0] = prime[i]-1; P[i]--; break; } } for(int i=0;i<Count;++i){ if( P[i] ){ ans[1] = prime[i]-1; P[i]--; break; } } cout << ans[0]+ans[1] << ' ' << N-1; return; } vector<LL> ans(3,1); int SerCount = 0; for(int i=0;i<Count;++i){ while(P[i] >= 3 ){ ans[0] *= prime[i]; ans[1] *= prime[i]; ans[2] *= prime[i]; P[i] -= 3; } if( P[i] ){ SerCount++; while(P[i] ){ SerNum.push_back(prime[i]); P[i]--; } } } MaxDepth = SerNum.size(); if( MaxDepth == 0 ){ LL temp = 0; for(int i=0;i<3;++i){ temp += ans[i]-1; } cout << temp << ' ' << N-1 << endl; return; } vector<LL> val(3,1); dfs(0,ans); LL temp = 0; for(int i=0;i<3;++i){ temp += SerVal[i]-1; } cout << temp << ' ' << N-1 << endl; } int main(void){ std::cin.tie(0); std::ios::sync_with_stdio(false); //std::cout << std::fixed;//小数を10進数表示 //cout << setprecision(16);//小数をいっぱい表示する。16? solve(); return 0; }