結果
問題 | No.689 E869120 and Constructing Array 3 |
ユーザー | dnish |
提出日時 | 2018-05-19 00:19:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,089 bytes |
コンパイル時間 | 797 ms |
コンパイル使用メモリ | 86,504 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 14:12:30 |
合計ジャッジ時間 | 4,459 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
ソースコード
#include <algorithm> #include <cmath> #include <cstdio> #include <cstring> #include <deque> #include <iostream> #include <map> #include <queue> #include <set> #include <stack> #include <string> #include <utility> #include <vector> #define p(s) cout<<(s)<<endl #define REP(i,n,N) for(int i=n;i<N;i++) #define RREP(i,n,N) for(int i=N-1;i>=n;i--) #define CK(n,a,b) ((a)<=(n)&&(n)<(b)) #define F first #define S second typedef long long ll; using namespace std; const int inf = 1e9+7; int K; bool isPrime_v[1000010]; // 処理用のメモリ確保 vector<int> hurui_v(int n) { vector<int> v; //bool *isPrime_v; // 初期化 isPrime_v[0] = isPrime_v[1] = false; for (int i = 2; i < n + 1; i++) isPrime_v[i] = true; // isPrime[0~n]で素数のものだけtrueにする for (int i = 2; i*i <= n; i++) { for (int j = i * 2; j < n + 1; j += i) { isPrime_v[j] = false; } } // 素数のみ追加 for (int i = 0; i < n + 1; i++) { if (isPrime_v[i]) v.push_back(i); } //delete[] isPrime_v; //メモリ解放 return v; } int one, sosu, rest; int main(){ cin>>K; if(K==0){ cout<<2<<endl; cout<<4<<" "<<4<<endl; } vector<int> prime = hurui_v(1000000); int mn = inf; REP(i, 1, 251) { REP(j, 0, 251 - i) { if (i * (i - 1) / 2 + i * j < K && K - (i * (i - 1) / 2 + i * j) + i + j < mn) { one = i; sosu = j; rest = K - (i * (i - 1) / 2 + i * j); mn = one + sosu + rest; } } } //cout << K << endl; cout << mn << endl; REP(i, 0, one) { cout << "1 "; } REP(i, 0, sosu) { cout << "2 "; } cout << "8 "; REP(i, 4, 1000) { if (rest == 0) break; if (!isPrime_v[prime[i] - 7] && !isPrime_v[prime[i] - 6]) { cout << prime[i] - 8 << " "; rest--; } } return 0; }