AcWing 1293. 夏洛克和他的女朋友
原题链接
简单
作者:
捡到一束光
,
2020-05-19 09:35:36
,
所有人可见
,
阅读 549
#include <iostream>
using namespace std;
const int N = 1e5 + 7;
int primes[N], cnt;
bool st[N];
void getPrimes(int n) {
for (int i = 2; i <= n; i++) {
if (!st[i]) {
primes[cnt ++] = i;
}
for (int j = 0; primes[j] <= n / i; j ++) {
st[primes[j] * i] = true;
if (i % primes[j] == 0) break;
}
}
}
int main() {
int n;
cin >> n;
getPrimes(N);
if (n <= 2) cout << 1 << endl;
else cout << 2 << endl;
for (int i = 2; i <= n + 1; i ++) {
if (!st[i]) cout << 1 << " ";
else cout << 2 << " ";
}
return 0;
}