您的位置:首页 > 其它

ICM Technex 2017 and Codeforces Round #400 (Div. 1 + Div. 2, combined) B

2017-07-23 00:17 423 查看
Sherlock has a new girlfriend (so unlike him!). Valentine's day is coming and he wants to gift her some jewelry.

He bought n pieces of jewelry. The i-th piece has price equal to i + 1, that is, the prices of the jewelry are 2, 3, 4, ... n + 1.

Watson gave Sherlock a challenge to color these jewelry pieces such that two pieces don't have the same color if the price of one piece is a prime divisor of the price of the other piece. Also, Watson asked him to minimize the number of different colors used.

Help Sherlock complete this trivial task.

Input
The only line contains single integer n (1 ≤ n ≤ 100000) — the number of jewelry pieces.

Output
The first line of output should contain a single integer k, the minimum number of colors that can be used to color the pieces of jewelry with the given constraints.

The next line should consist of n space-separated integers (between 1 and k) that specify the color of each piece in the order of increasing price.

If there are multiple ways to color the pieces using k colors, you can output any of them.

Examples

input
3


output
2
1 1 2


input
4


output
2
2 1 1 2


Note
In the first input, the colors for first, second and third pieces of jewelry having respective prices 2, 3 and 4 are 1, 1 and 2 respectively.

In this case, as 2 is a prime divisor of 4, colors of jewelry having prices 2 and 4 must be distinct.

题意:将数字染色,如果有一个相同的素数除数,则颜色不同,使得颜色种类最少

解法:

1 素数颜色1,其他颜色2

2 看样列怎么想也就两种(不过n<=2就是一种)

#include<bits/stdc++.h>
typedef long long LL;
typedef unsigned long long ULL;
using namespace std;
map<int,int>Mp;
int main(){
int n;
cin>>n;
if(n<=2){
cout<<"1"<<endl;
for(int i=1;i<=n;i++){
cout<<"1 ";
}
return 0;
}
n=n+1;
for(int i=2;i<=n;i++){
for(int j=i+i;j<=n;j+=i){
Mp[j]=2;
}
}
cout<<"2"<<endl;
for(int i=2;i<=n;i++){
if(Mp[i]){
cout<<Mp[i]<<" ";
}else{
cout<<"1 ";
}
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐