D. Anti-Sudoku1300 / 思维 构造

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了D. Anti-Sudoku1300 / 思维 构造相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/1335/D
选定一个字母a再选定一个字母b将所有的字母b变成字母a即可。

#include<bits/stdc++.h>
using namespace std;
string s[10];
int main(void)
{
	int t; cin>>t;
	while(t--)
	{
		for(int i=0;i<9;i++) cin>>s[i];
		for(int i=0;i<9;i++)
		{
			for(int j=0;j<9;j++) if(s[i][j]=='2') s[i][j]='3';
		}
		for(int i=0;i<9;i++) cout<<s[i]<<endl;
	}
	return 0;
}

以上是关于D. Anti-Sudoku1300 / 思维 构造的主要内容,如果未能解决你的问题,请参考以下文章

D. Queue1300 / 贪心 思维

D. Buying Shovels1300 / 求约数

D. Alice, Bob and Candies1300 / 模拟

B. Trouble Sort1300 / 思维

B. Shuffle1300 / 思维 区间合并

C. Boats Competition1300 / 思维 暴力