結果
問題 | No.14 最小公倍数ソート |
ユーザー | IL_msta |
提出日時 | 2015-08-22 17:15:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,251 bytes |
コンパイル時間 | 641 ms |
コンパイル使用メモリ | 91,872 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 12:47:50 |
合計ジャッジ時間 | 1,547 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 9 ms
5,376 KB |
testcase_04 | AC | 21 ms
5,376 KB |
testcase_05 | AC | 10 ms
5,376 KB |
testcase_06 | AC | 11 ms
5,376 KB |
testcase_07 | AC | 14 ms
5,376 KB |
testcase_08 | AC | 17 ms
5,376 KB |
testcase_09 | AC | 21 ms
5,376 KB |
testcase_10 | AC | 19 ms
5,376 KB |
testcase_11 | AC | 20 ms
5,376 KB |
testcase_12 | AC | 20 ms
5,376 KB |
testcase_13 | AC | 20 ms
5,376 KB |
testcase_14 | AC | 20 ms
5,376 KB |
testcase_15 | AC | 20 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include <iostream> #include <iomanip> #include <sstream> #include <algorithm> #include <cmath> #include <string> //#include <array> #include <list> #include <queue> #include <vector> #include <complex> #include <set> #include <map> ///////// #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define P(p) cout<<(p)<<endl; #define PII pair<int,int> ///////// typedef long long LL; typedef long double LD; ///////// using namespace::std; ///////// const int Amax = 10001; int A[Amax]; bool pdp[Amax]; vector<vector<int>> dp(Amax); vector<int> ans(Amax); void makePrime(int N){ for(int i=2; i<= N; ++i){ if(pdp[i] == false){ for(int j = i+i; j<= N; j += i){ pdp[j] = true; dp[j].push_back(i); } }else{ for(int j = i+i; j<= N; j += i){ dp[j].push_back(i); } } dp[i].push_back(i); } return ; } int main(void){ std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed;// //cout << setprecision(16);// int N; cin>>N; int Ymax=0; int ansCount = 1; cin>>ans[0]; int cintemp; for(int i=0;i<N-1;++i){ cin>>cintemp; Ymax = max(Ymax,cintemp+1); ++A[cintemp]; } makePrime(Ymax-1); int count = 1; int min = 1; while( A[1] ){//1を全部使う ans[ansCount] = 1; ++ansCount; --A[1]; } for(count = min; count<Ymax; ++count){ if( A[count] ){ min = count; break; } } if( ans[ansCount-1] == 1){ while( A[min] ){ ans[ansCount] = min; --A[min]; ++ansCount; } } int ter;//固定された最後の値 bool ansFlag; int i;//ループカウンタ int ansA,ansB;//素数の倍数 と 最小値 int temp;//一時収納 vector<int>::reverse_iterator yRItr; vector<int>::reverse_iterator yRBegin; vector<int>::reverse_iterator yREnd; while( ansCount < N ){ for(count = min; count<Ymax; ++count){ if( A[count] ){ min = count; break; } } ter = ans[ansCount-1]; ansFlag = false; if( pdp[ter] == false ){//素数 for(i=min/ter;i*ter<Ymax;++i){ if( A[i*ter] ){ ansA = i*ter; ansFlag = true; break; } } ansB = min*ter; if( ansFlag ){ if( ansB < ansA ){ ans[ansCount] = min; --A[min]; ++ansCount; }else{//ansA ans[ansCount] = ansA; --A[ansA]; ++ansCount; } }else{ ans[ansCount] = min; --A[min]; ++ansCount; } continue; } ////////// yRItr = dp[ ter ].rbegin(); yRBegin = yRItr; yREnd = dp[ ter ].rend(); i= min/ter; if( min%ter ) ++i; if( yRItr != yREnd ) { for( ; !ansFlag && i <= min ; ++i ){ while( yRItr != yREnd){ temp = i * ter / (*yRItr); if( temp < Ymax && A[temp] ){ ans[ansCount] = temp; --A[temp]; ++ansCount; ansFlag = true; break; } ++yRItr; } if(!ansFlag){ temp = i * ter;//約数1 if( temp < Ymax && A[temp] ){ ans[ansCount] = temp; --A[temp]; ++ansCount; ansFlag = true; break; } } yRItr = yRBegin; } } if( !ansFlag ){ ans[ansCount] = min; --A[min]; ++ansCount; } } //////////// rep(i,N){ cout << ans[i]; if( i!=N-1){ cout << ' '; } }cout << '\n'; return 0; }