Row Major(思维题)

题目

题意:给你一个n,构造一个长度为n的字符串,字符串可以变为RxC的网格,每个网格相邻的字符都不一样。

分析:如果一个数x不是n的因子,即n不能整除x,那么构造一个字串,由‘a’到'a'+x-1,然后这样的子串要n/x个,再加上n%x个字符,这些字符,从‘a'开始往后依次增加,那么长度为n的字符串构成的网格,一定不会有相邻的格子字符相同。

#include
using namespace std;
#define IOS ios::sync_with_stdio(false);cin.tie(0);
//#define int long long
#define x first
#define y second
typedef long long LL;
typedef pair> PII;
int tx[5]={-1,0,1,0},ty[5]={0,1,0,-1};

const int N = 4e4+10;
int d[N];
int g[N];
void solve()
{
	int n;
	cin>>n;
	if(n==1)
	{
		cout<<'a'<>t;
	while(t--) 
    solve();
	return 0;
}

你可能感兴趣的:(codeforces,算法)