zoukankan      html  css  js  c++  java
  • CF776B Sherlock and his girlfriend

    Description

    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.

    题意:N个点,标号2....N-1,给这些点染色,要求如果a是b的质因子,则a,b不能同色,求一种颜色数最少的方案。

    题解:先预处理出区间内的质数,和合数,很简单如果只有质数,那么谁也不可能是谁的质因子,所以就一种方案,如果是合数那只能与它的“质因子”不同颜色,

    所以颜色数至多是2,至少是1,最后输出方案时,把所有质数染成1,把所有合数染成2即可,这是一个二分图。

     1 #include<cstdio>
     2 #include<iostream>
     3 #include<cstring>
     4 #include<algorithm>
     5 
     6 using namespace std;
     7 
     8 int is_prime[100005],prime[100005],cnt,n;
     9 bool flag;
    10 
    11 inline void ou_shai(int x)
    12 {
    13     for(int i=2;i<=x;i++)
    14     {
    15         if(is_prime[i]==0) is_prime[i]=i,prime[++cnt]=i;
    16         for(int j=1;j<=cnt;j++)
    17         {
    18             if(prime[j]*i>x||prime[j]>is_prime[i]) break;
    19             flag=true;
    20             is_prime[prime[j]*i]=prime[j];
    21         }
    22     }
    23 }
    24 
    25 int main()
    26 {
    27     scanf("%d",&n);
    28     ou_shai(n+1);
    29     if(flag) printf("2
    ");
    30     else printf("1
    ");
    31     for(int i=2;i<=n+1;i++)
    32        if(is_prime[i]==i) printf("%d ",1);
    33        else printf("%d ",2);
    34     return 0;
    35 }
  • 相关阅读:
    [转]在Ubuntu 下安装Redis 并使用init 脚本启动
    [资源]PHP使用消息队列
    [转]reids客户端 redis-cli用法
    [转]redis.conf的配置解析
    【转】微信公共号开发,提示“该公众号暂时无法提供服务,请稍后再试”,如何解决?
    [转]php 解决json_encode中文UNICODE转码问题
    [资料]Keychain 获取设备唯一
    [转]PHP 获取服务器详细信息代码
    crontab任务取消发送邮件
    [转]php返回json数据中文显示的问题
  • 原文地址:https://www.cnblogs.com/Hoyoak/p/11385498.html
Copyright © 2011-2022 走看看