Madoka and Underground Competitions
构造
在一行里,如果选定了其中一个位置是 \(X\),接下来就直接往左和往右每 \(k\) 个放置一个 \(X\) 就行了
每一行的初始位置根据一开始的那个 \(X\),斜着一个方向铺满,即可做到每一行都存在一个 \(X\)
. | X | . | . | . |
---|---|---|---|---|
. | . | X | . | . |
. | . | . | X | . |
. | . | . | . | X |
X | . | . | . | . |
例如以上的,不管 \(k\) 是多少,先做到每行都铺一个
同一列上,每 \(k\) 个出现一个 \(X\) 的要求,可以通过那一行的初始 \(X\) 放置过来
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <string>
#include <queue>
#include <functional>
#include <map>
#include <set>
#include <cmath>
#include <cstring>
#include <deque>
#include <stack>
#include <ctime>
#include <cstdlib>
using namespace std;
typedef long long ll;
#define pii pair<int, int>
const ll maxn = 510;
const ll inf = 1e17 + 10;
char gra[maxn][maxn];
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t;
cin >> t;
while(t--)
{
int n, k, r, c;
cin >> n >> k >> r >> c;
for(int i=0; i<=n; i++)
for(int j=0; j<=n; j++)
gra[i][j] = '.';
for(int i=0; i<n; i++)
{
gra[r][c] = 'X';
for(int j=c; j<=n; j+=k) gra[r][j] = 'X';
for(int j=c; j>=1; j-=k) gra[r][j] = 'X';
r++;
c++;
if(c > n) c = 1;
if(r > n) r = 1;
}
for(int i=1; i<=n; i++)
{
for(int j=1; j<=n; j++)
{
cout << gra[i][j];
}
cout << "\n";
}
}
return 0;
}
标签:Madoka,int,ll,Codeforces,Competitions,maxn,include
From: https://www.cnblogs.com/dgsvygd/p/16651814.html