CF776B.Sherlock and his girlfriend

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Sherlock has a new girlfriend (so unlike him!). Valentine's day is coming and he wants to gift her some jewelry.

He bought nn pieces of jewelry. The ii -th piece has price equal to i+1i+1 , that is, the prices of the jewelry are 2,3,4,... n+12,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.

输入格式

The only line contains single integer nn ( 1<=n<=1000001<=n<=100000 ) — the number of jewelry pieces.

输出格式

The first line of output should contain a single integer kk , 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 nn space-separated integers (between 11 and kk ) that specify the color of each piece in the order of increasing price.

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

输入输出样例

  • 输入#1

    3
    

    输出#1

    2
    1 1 2 
  • 输入#2

    4
    

    输出#2

    2
    2 1 1 2
    

说明/提示

In the first input, the colors for first, second and third pieces of jewelry having respective prices 22 , 33 and 44 are 11 , 11 and 22 respectively.

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

首页