結果

問題 No.1528 Not 1
ユーザー funera1funera1
提出日時 2021-06-05 03:47:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 2,152 bytes
コンパイル時間 1,851 ms
コンパイル使用メモリ 177,872 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-20 19:27:34
合計ジャッジ時間 3,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 12 ms
6,820 KB
testcase_02 AC 5 ms
6,816 KB
testcase_03 AC 7 ms
6,816 KB
testcase_04 AC 12 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 8 ms
6,816 KB
testcase_07 AC 12 ms
6,820 KB
testcase_08 AC 7 ms
6,816 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 7 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 14 ms
6,816 KB
testcase_19 AC 15 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include<bits/stdc++.h>
//#include <atcoder/all>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#define rep(i,n)for(int i=0;(i)<(int)(n);i++)
#define REP(i,a,b)for(int i=(int)(a);(i)<=(int)(b);i++)
#define ALL(a) (a).begin(),(a).end()
#define pb push_back
#define fi first
#define se second
#define sz(x) ((int)x.size())
using namespace std;
//using namespace atcoder;
using ld = long double;
using ll = long long;
using P = pair<ll, ll>;
template<typename T> bool chmin(T& a, const T& b) { if(a >= b){ a = b; return 1;} return 0; }
template<typename T> bool chmax(T& a, const T& b) { if(a <= b){ a = b; return 1;} return 0; }
const ll MOD = 1e9 + 7;
const ll INF = 1e9;
//
vector<bool> IsPrime;
void sieve(size_t max){
if(max+1 > IsPrime.size()){ // resize
IsPrime.resize(max+1,true); // IsPrime
}
IsPrime[0] = false; // 0
IsPrime[1] = false; // 1
for(size_t i=2; i*i<=max; ++i) // 0sqrt(max)調
if(IsPrime[i]) // i
for(size_t j=2; i*j<=max; ++j) // (max)i
IsPrime[i*j] = false; //
}
int main(){
int n;
cin >> n;
if(n == 1){
cout << 1 << endl;
return 0;
}
vector<int> a;
sieve(n + 1);
vector<int> p, used(n + 1, 0);
int lim = (n + 1) / 2;
rep(i, n + 1)if(IsPrime[i])p.pb(i);
rep(i, sz(p)){
if(sz(a) == lim)break;
for(int j = p[i]; j <= n; j += p[i]){
if(i + 1 < sz(p) && p[i] * p[i + 1] == j)continue;
if(used[j])continue;
a.pb(j);
used[j] = 1;
if(sz(a) == lim)break;
}
if(sz(a) == lim)break;
if(i + 1 < sz(p) && (ll)p[i] * (ll)p[i + 1] <= n){
a.pb(p[i] * p[i + 1]);
used[p[i] * p[i + 1]] = 1;
}
else break;
}
if(sz(a) < lim)cout << -1 << endl;
else for(auto ai : a)cout << ai << " " ;cout << endl;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0