zoukankan      html  css  js  c++  java
  • Codeforces Round #257 (Div. 2) E题:Jzzhu and Apples 模拟

    E. Jzzhu and Apples
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Jzzhu has picked n apples from his big apple tree. All the apples are numbered from 1 to n. Now he wants to sell them to an apple store.

    Jzzhu will pack his apples into groups and then sell them. Each group must contain two apples, and the greatest common divisor of numbers of the apples in each group must be greater than 1. Of course, each apple can be part of at most one group.

    Jzzhu wonders how to get the maximum possible number of groups. Can you help him?

    Input

    A single integer n (1 ≤ n ≤ 105), the number of the apples.

    Output

    The first line must contain a single integer m, representing the maximum number of groups he can get. Each of the next m lines must contain two integers — the numbers of apples in the current group.

    If there are several optimal answers you can print any of them.

    Sample test(s)
    input
    6
    
    output
    2
    6 3
    2 4
    
    input
    9
    
    output
    3
    9 3
    2 4
    6 8
    
    input
    2
    
    output
    0

    思路:这题刚開始确实想不到的。看了别人的解题报告才知道怎么搞。

    由于仅仅要最大公约数>1。所以偶数的组合肯定能够。可是奇数的就有点难搞了。

    假设用加倍的方法来组成一对的话那不是最多的情况。

    可是多加两位就是最多的情况了,这是前20名的代码中的做法。

    我没想明确。后面才感觉这得想到才行。由于奇数加两位之后为偶数的机率比較小,就不和偶数的组合情况反复了,然后又能够把奇数组合成一对。这太机智了。比赛的时候确实非常难想出来。

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<map>
    #include<queue>
    #include<set>
    #include<bitset>
    #define mem(a,b) memset(a,b,sizeof(a))
    #define INF 1000000070000
    using namespace std;
    typedef long long ll;
    typedef unsigned long long ull;
    int vis[100005],is[100005];
    vector<pair<int,int> >v;
    int main()
    {
        int n,i,j;
        cin>>n;
        for(i=4;i<=n;i+=2)
            vis[i]=1;
        for(i=3;i<=n;i+=2)
        {
            if(!vis[i])
            {
                if(i*2>n) break;
                vector<int>a;
                for(j=i;j<=n;j+=2*i)
                {
                    vis[j]=1;
                    if(!is[j]) a.push_back(j),is[j]=1;
                }
                for(j=a.size()-1;j>0;j-=2)
                {
                    v.push_back(make_pair(a[j],a[j-1]));
                    is[a[j]]=is[a[j-1]]=1;
                }
                if(a.size()&1)
                {
                    v.push_back(make_pair(a[0],a[0]*2));
                    is[a[0]]=is[a[0]*2]=1;
                }
            }
        }
        if(n&1) n--;
        int x=0,y;
        for(i=n;i>0;i-=2)
        {
            if(is[i]) continue;
            if(!x) y=i,x=1;
            else x=0,v.push_back(make_pair(i,y));
        }
        printf("%d
    ",v.size());
        for(i=0;i<v.size();i++)
            printf("%d %d
    ",v[i].first,v[i].second);
        return 0;
    }
    


  • 相关阅读:
    Android仿网易client实现抽屉式拖拉菜单界面
    使用SRVCTL时报错:error while loading shared libraries
    permission denied for this window type
    pytest文档22-fixture详细介绍-作为参数传入,error和failed区别
    pytest文档22-fixture详细介绍-作为参数传入,error和failed区别
    pytest文档22-fixture详细介绍-作为参数传入,error和failed区别
    xml文件错误
    xml文件错误
    xml文件错误
    mysql replace into 的使用情况
  • 原文地址:https://www.cnblogs.com/wzjhoutai/p/6703757.html
Copyright © 2011-2022 走看看