A. Little Artem1000 / 构造
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Little Artem1000 / 构造相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1333/A
WBB…
BB…
…
只要第一个是W其它都是B即可
B的好的有2个 W的好的有1个
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int t; cin>>t;
while(t--)
{
int n,m; cin>>n>>m;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
{
if(i==1&&j==1) cout<<"W";
else cout<<"B";
}
cout<<endl;
}
}
return 0;
}
以上是关于A. Little Artem1000 / 构造的主要内容,如果未能解决你的问题,请参考以下文章
@codeforces - 668E@ Little Artem and 2-SAT
CodeForces669E:Little Artem and Time Machine(CDQ分治)
CodeForces 669C Little Artem and Matrix GNU