程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Codeforces 476D Dreamoon and Sets 規律+構造

Codeforces 476D Dreamoon and Sets 規律+構造

編輯:C++入門知識

Codeforces 476D Dreamoon and Sets 規律+構造


題目鏈接:點擊打開鏈接

題意:

輸出n組集合,每組4個。

對於任意一組中的4個元素,一組內任意2個數的gcd==k

且n組的所有數字各不相同。

要使得n組中最大的數字最小。

問:

輸出最大的那個數,並輸出n組的數字。

思路:

首先能得到,當把這組數字都/k,則任意兩個數互質。

然後就是規律:

1 2 3 5

7 8 9 11

對應+6

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
template 
inline bool rd(T &ret) {
    char c; int sgn;
    if(c=getchar(),c==EOF) return 0;
    while(c!='-'&&(c<'0'||c>'9')) c=getchar();
    sgn=(c=='-')?-1:1;
    ret=(c=='-')?0:(c-'0');
    while(c=getchar(),c>='0'&&c<='9') ret=ret*10+(c-'0');
    ret*=sgn;
    return 1;
}
template 
inline void pt(T x) {
    if (x <0) {
        putchar('-');
        x = -x;
    }
    if(x>9) pt(x/10);
    putchar(x%10+'0');
}
using namespace std;
typedef long long ll;
#define N 200010
const ll mod = 1000000007;

ll n, k, ans;
vectorG[10001];
ll gcd(ll a, ll b){
	if(a>b)swap(a,b);
	while(a){
		b %= a; swap(a,b);
	}
	return b;
}

void solve(int x){
	G[x].clear();
	if(x==1){
		G[x].push_back(1);
		G[x].push_back(2);
		G[x].push_back(3);
		G[x].push_back(5);
	}
	else {
		G[x].push_back(G[x-1][0]+6);
		G[x].push_back(G[x-1][1]+6);
		G[x].push_back(G[x-1][2]+6);
		G[x].push_back(G[x-1][3]+6);
	}
}
int main() {
	while(cin>>n>>k){
		ans = 1;
		for(int i = 1; i <= n; i++)solve(i);
		pt((G[n][3])*k); puts("");
		for(int i = 1; i <= n; i++){
			for(int j = 0; j < G[i].size(); j++){
				pt(G[i][j] * k);
				j==G[i].size()-1 ? putchar('\n'):putchar(' ');
			}
		}
	}
    return 0;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved