codeforces round.906 - E - Mirror Grid (数学,坐标变换)

2024-03-26 23:20

本文主要是介绍codeforces round.906 - E - Mirror Grid (数学,坐标变换),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

You are given a square grid with n rows and n columns. Each cell contains either 0 0 0 or 1 1 1.

In an operation, you can select a cell of the grid and flip it (from 0 → 1 0→1 01 or 1 → 0 1→0 10). Find the minimum number of operations you need to obtain a square that remains the same when rotated 0 ∘ , 90 ∘ , 180 ∘ 0∘, 90∘, 180∘ 0,90,180 and 270 ∘ 270∘ 270.

The picture below shows an example of all rotations of a grid.
在这里插入图片描述

Input

The first line contains a single integer t t t ( 1 ≤ t ≤ 100 ) (1≤t≤100) (1t100) — the number of test cases.

The first line of each test case contains a single integer n n n ( 1 ≤ n ≤ 100 ) (1≤n≤100) (1n100) — the size of the grid.

Then n n n lines follow, each with n n n characters a i , j a_{i,j} ai,j ( 0 ≤ a i , j ≤ 1 ) (0≤a_{i,j}≤1) (0ai,j1) — the number written in each cell.

Output

For each test case output a single integer — the minimum number of operations needed to make the square look the same rotated 0 ∘ , 90 ∘ , 180 ∘ a n d 270 ∘ 0∘, 90∘, 180∘ and 270∘ 0,90,180and270.

Sample 1

Input

5
3
010
110
010
1
0
5
11100
11011
01011
10011
11000
5
01000
10101
01010
00010
01001
5
11001
00000
11111
10110
01111

Output

1
0
9
7
6

首先:这题不是找规律的题,如果要满足怎么转都是一样的,这个图形就要满足中心对称,如果要满足中心对称就要满足向以下图形一样:
在这里插入图片描述
首先绿色方块中的每个点转到其他任何方块对应的点都应该是相同的,只有满足了这个规律才能够成为中心对称图形,而中心对称图形在行列数为奇数和偶数的时候是不同的。

如果在绿色区域内的点的坐标为(x,y),那么转到其他三个区域对应的点分别是: ( y , n − x − 1 ) , ( n − x + 1 , n − y + 1 ) , ( n − y + 1 , x ) (y,n - x - 1) , (n - x + 1,n - y + 1) , (n - y + 1,x) (y,nx1),(nx+1,ny+1),(ny+1,x)

由于只有0和1,所以只要求出来这四个点的加和,如果为 1 1 1 或者 3 3 3,那么就是有 1 1 1 1 1 1 或者 1 1 1 0 0 0,那么这种情况只需要改变一个值,那么就让答案加 1 1 1,如果是 0 , 4 0,4 0,4,那就不用改变,如果为 2 2 2,那就要改变两次。

代码:

#include<iostream>
using namespace std;
const int N = 110;int g[N][N];
int n;int main() {int t; cin >> t;while (t--) {cin >> n;for (int i = 1; i <= n; i++) {for (int j = 1; j <= n; j++) {char c; cin >> c;g[i][j] = c - '0';}}int res = 0;if (n & 1) {for (int i = 1; i <= n / 2; i++) {for (int j = 1; j <= n / 2 + 1; j++) {int x1 = j, y1 = n - i + 1;int x2 = n - i + 1, y2 = n - j + 1;int x3 = n - j + 1, y3 = i;int sum = g[i][j] + g[x1][y1] + g[x2][y2] + g[x3][y3];if (sum == 1 || sum == 3)res += 1;if (sum == 2)res += 2;}}}else {for (int i = 1; i <= n / 2; i++) {for (int j = 1; j <= n / 2; j++) {int x1 = j, y1 = n - i + 1;int x2 = n - i + 1, y2 = n - j + 1;int x3 = n - j + 1, y3 = i;int sum = g[i][j] + g[x1][y1] + g[x2][y2] + g[x3][y3];if (sum == 1 || sum == 3)res += 1;if (sum == 2)res += 2;}}}cout << res << endl;}return 0;
}

这篇关于codeforces round.906 - E - Mirror Grid (数学,坐标变换)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/850199

相关文章

uva 10014 Simple calculations(数学推导)

直接按照题意来推导最后的结果就行了。 开始的时候只做到了第一个推导,第二次没有继续下去。 代码: #include<stdio.h>int main(){int T, n, i;double a, aa, sum, temp, ans;scanf("%d", &T);while(T--){scanf("%d", &n);scanf("%lf", &first);scanf

uva 10025 The ? 1 ? 2 ? ... ? n = k problem(数学)

题意是    ?  1  ?  2  ?  ...  ?  n = k 式子中给k,? 处可以填 + 也可以填 - ,问最小满足条件的n。 e.g k = 12  - 1 + 2 + 3 + 4 + 5 + 6 - 7 = 12 with n = 7。 先给证明,令 S(n) = 1 + 2 + 3 + 4 + 5 + .... + n 暴搜n,搜出当 S(n) >=

uva 11044 Searching for Nessy(小学数学)

题意是给出一个n*m的格子,求出里面有多少个不重合的九宫格。 (rows / 3) * (columns / 3) K.o 代码: #include <stdio.h>int main(){int ncase;scanf("%d", &ncase);while (ncase--){int rows, columns;scanf("%d%d", &rows, &col

【生成模型系列(初级)】嵌入(Embedding)方程——自然语言处理的数学灵魂【通俗理解】

【通俗理解】嵌入(Embedding)方程——自然语言处理的数学灵魂 关键词提炼 #嵌入方程 #自然语言处理 #词向量 #机器学习 #神经网络 #向量空间模型 #Siri #Google翻译 #AlexNet 第一节:嵌入方程的类比与核心概念【尽可能通俗】 嵌入方程可以被看作是自然语言处理中的“翻译机”,它将文本中的单词或短语转换成计算机能够理解的数学形式,即向量。 正如翻译机将一种语言

Codeforces Round #240 (Div. 2) E分治算法探究1

Codeforces Round #240 (Div. 2) E  http://codeforces.com/contest/415/problem/E 2^n个数,每次操作将其分成2^q份,对于每一份内部的数进行翻转(逆序),每次操作完后输出操作后新序列的逆序对数。 图一:  划分子问题。 图二: 分而治之,=>  合并 。 图三: 回溯:

Codeforces Round #261 (Div. 2)小记

A  XX注意最后输出满足条件,我也不知道为什么写的这么长。 #define X first#define Y secondvector<pair<int , int> > a ;int can(pair<int , int> c){return -1000 <= c.X && c.X <= 1000&& -1000 <= c.Y && c.Y <= 1000 ;}int m

Codeforces Beta Round #47 C凸包 (最终写法)

题意慢慢看。 typedef long long LL ;int cmp(double x){if(fabs(x) < 1e-8) return 0 ;return x > 0 ? 1 : -1 ;}struct point{double x , y ;point(){}point(double _x , double _y):x(_x) , y(_y){}point op

Codeforces Round #113 (Div. 2) B 判断多边形是否在凸包内

题目点击打开链接 凸多边形A, 多边形B, 判断B是否严格在A内。  注意AB有重点 。  将A,B上的点合在一起求凸包,如果凸包上的点是B的某个点,则B肯定不在A内。 或者说B上的某点在凸包的边上则也说明B不严格在A里面。 这个处理有个巧妙的方法,只需在求凸包的时候, <=  改成< 也就是说凸包一条边上的所有点都重复点都记录在凸包里面了。 另外不能去重点。 int

Codeforces 482B 线段树

求是否存在这样的n个数; m次操作,每次操作就是三个数 l ,r,val          a[l] & a[l+1] &......&a[r] = val 就是区间l---r上的与的值为val 。 也就是意味着区间[L , R] 每个数要执行 | val 操作  最后判断  a[l] & a[l+1] &......&a[r] 是否= val import ja

数学建模笔记—— 非线性规划

数学建模笔记—— 非线性规划 非线性规划1. 模型原理1.1 非线性规划的标准型1.2 非线性规划求解的Matlab函数 2. 典型例题3. matlab代码求解3.1 例1 一个简单示例3.2 例2 选址问题1. 第一问 线性规划2. 第二问 非线性规划 非线性规划 非线性规划是一种求解目标函数或约束条件中有一个或几个非线性函数的最优化问题的方法。运筹学的一个重要分支。2