【构造】【cf477B】Dreamoon and Sets

本文介绍了一个算法问题,目标是构造n个包含四个互质整数的集合,且这些集合中的整数不能重复出现,同时所有整数都需要大于0并满足特定的公约数条件。文章提供了一种有效的解决方案。

转载:http://hzwer.com/4682.html

Dreamoon likes to play with sets, integers and gcd. gcd(a,b) is defined as the largest positive integer that divides both a and b.

Let S be a set of exactly four distinct integers greater than 0. Define S to be of rank k if and only if for all pairs of distinct elements sisj from S, gcd(si,sj)=k.

Given k and n, Dreamoon wants to make up n sets of rank k using integers from 1 to msuch that no integer is used in two different sets (of course you can leave some integers without use). Calculate the minimum m that makes it possible and print one possible solution.

Input

The single line of the input contains two space separated integers nk (1 ≤ n ≤ 10 000, 1 ≤ k ≤ 100).

Output

On the first line print a single integer — the minimal possible m.

On each of the next n lines print four space separated integers representing the i-th set.

Neither the order of the sets nor the order of integers within a set is important. If there are multiple possible solutions with minimal m, print any one of them.

Sample test(s)

input

11

output

5
1 2 3 5
input

22

output

22
2 4 6 22
14 18 10 16
Note

For the first example it's easy to see that set {1, 2, 3, 4} isn't a valid set of rank 1 since gcd(2,4)=2!=1.

题解

本质就是求n个集合,元素互不相同,每个集合4个互质的数,要求最大值最小

公约数k即所有元素都乘上k即可

每个集合显然只能有一个偶数,而且发现每三个奇数都是互质的。。。

然后偶数也要跟这些奇数互质。。

那么只要

2 1 3 5

8 7 9 11

14 13 15 17

这样构造就可以了

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<cmath>
#include<cstring>
#define inf 1000000000
#define ll long long
#define mod 1000000007
using namespace std;
int read()
{
    int x=0,f=1;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
int n,k,tot;
int ans[10005][5];
int main()
{
    n=read();k=read();
    for(int i=1;i<=n;i++)
    {
        int k=i*6-4;
        ans[i][1]=k;ans[i][2]=k-1;
        ans[i][3]=k+1;ans[i][4]=k+3;
    }
    tot=(n*6-4)+3;
    printf("%d\n",tot*k);
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=4;j++)
            printf("%d ",ans[i][j]*k);
        printf("\n");
    }
    return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值