Polo the Penguin and Matrix

Little penguin Polo has an n × m matrix, consisting of integers. Let's index the matrix rows from 1 to n from top to bottom and let's index the columns from 1 to m from left to right. Let's represent the matrix element on the intersection of row i and column j as aij.

In one move the penguin can add or subtract number d from some matrix element. Find the minimum number of moves needed to make all matrix elements equal. If the described plan is impossible to carry out, say so.

Input

The first line contains three integers nm and d (1 ≤ n, m ≤ 100, 1 ≤ d ≤ 104) — the matrix sizes and the d parameter. Next n lines contain the matrix: the j-th integer in the i-th row is the matrix element aij (1 ≤ aij ≤ 104).

Output

In a single line print a single integer — the minimum number of moves the penguin needs to make all matrix elements equal. If that is impossible, print "-1" (without the quotes).

Examples
input
Copy
2 2 2
2 4
6 8
output
Copy
4
input
Copy
1 2 7
6 7
output
Copy
-1
题解:看数据比较小,直接暴力跑了一遍。
 1 #pragma warning(disable:4996)
 2 #include<cmath>
 3 #include<string>
 4 #include<cstdio>
 5 #include<cstring>
 6 #include<iostream>
 7 #include<algorithm>
 8 using namespace std;
 9 
10 const int maxn = 10005;
11 
12 int n, m, d;
13 int a[maxn];
14 
15 int main()
16 {
17     while (cin >> n >> m >> d) {
18         int cnt = 0, ma = 0;
19         for (int i = 1; i <= n; i++) {
20             for (int j = 1; j <= m; j++) {
21                 int tp;
22                 scanf("%d", &tp);
23                 a[++cnt] = tp;
24                 ma = max(ma, tp);
25             }
26         }
27         int ans = 2000000007;
28         for (int i = 1; i <= ma; i++) {
29             int tem = 0;
30             bool flag = true;
31             for (int j = 1; j <= cnt; j++) {
32                 if (abs(a[j] - i) % d) { flag = false; break; }
33                 tem += abs(a[j] - i) / d;
34             }
35             if (flag) ans = min(ans, tem);
36         }
37         if (ans == 2000000007) cout << "-1" << endl;
38         else cout << ans << endl;
39     }
40     return 0;
41 }
 
正解:
  a1+x1*d=A;
  a2+x2*d=A;
  a3+x3*d=A;
  ·····
显然,a1%d=A%d=a2%d=A%d=a3%d=A%d=···,所以如果矩阵中每个元素模d的余数不想等,则必然不能通过加减使得相等。然后排序,再从中间向两边加减d就行了。
 1 #pragma warning(disable:4996)
 2 #include<cmath>
 3 #include<cstdio>
 4 #include<cstring>
 5 #include<iostream>
 6 #include<algorithm>
 7 using namespace std;
 8 
 9 const int maxn = 10005;
10 
11 int n, m, d;
12 int a[maxn];
13 
14 int main()
15 {
16     while (cin >> n >> m >> d) {
17         int cnt = 0;
18         for (int i = 1; i <= n; i++) {
19             for (int j = 1; j <= m; j++) scanf("%d", &a[++cnt]);
20         }
21 
22         bool flag = true;
23         for (int i = 2; i <= cnt; i++) if (a[i] % d != a[1] % d) { flag = false; break; }
24 
25         if (!flag) printf("-1\n");
26         else {
27             int ans = 0;
28             int pos = (cnt % 2 == 0) ? cnt / 2 : cnt / 2 + 1;
29 
30             sort(a + 1, a + cnt + 1);
31             for (int i = 1; i <= cnt; i++) if (i != pos) ans += (abs(a[i] - a[pos]) / d);
32             cout << ans << endl;
33         }
34     }
35     return 0;
36 }
 

 









转载于:https://www.cnblogs.com/zgglj-com/p/8996744.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/452768.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

趣解 XSS和CSRF的原理

参考文章&#xff1a;趣解 XSS和CSRF的原理 推荐网站&#xff1a;古黑论 感谢作者分享&#xff01;

js异步解决方案 --- 回调函数 vs promise vs generater/yield vs async/await

javascript -- 深度解析异步解决方案 高级语言层出不穷, 然而唯 js 鹤立鸡群, 这要说道js的设计理念, js天生为异步而生, 正如布道者朴灵在 node深入浅出--(有兴趣的可以读一下, 很有意思^_^) , 异步很早就存在于操作系统的底层, 意外的是&#xff0c;在绝大多数高级编程语言中…

什么是TPDU

TPDU,全称Transport Protocol Data Unit&#xff0c;是指传送协议数据单元。代表从一个传输实体发送至另一个传输实体的消息。 我们需要为传输实体之间交换的数据单元起一个更加一般化的名字&#xff0c;TCP的术语是数据段&#xff0c;它很容易混淆&#xff0c;而且在TCP领域之…

sql注入基本原理

1. 参考文献&#xff1a; 趣解SQL注入原理 Sql注入基本原理 2.参考书籍

项目管理杂谈-员工的积极性在哪里?

项目开发过程中&#xff0c;每每有人感叹&#xff0c;曾几何时&#xff0c;队伍如何好带&#xff0c;如何好用&#xff0c;而如今&#xff0c;人心繁杂&#xff0c;队伍不好带了。很多人的想法是“人望高处走”&#xff0c;不停的寻找待遇及其他方面更好的单位。其实&#xff0…

centos7硬盘分区

首先在虚拟机的设置中为系统添加硬盘 使用fdisk -l /dev/sdb 查看未分区的硬盘 fdisk -l /dev/sda 这是已经分区好得 接下来我们就要对sdb进行分区: 首先使用fdisk /dev/sdb 接着输入m可以看到详细命令 进行添加分区 已经建立好4个主分区&#xff0c;在建立时会看到以下 删除…

java上传rar文件_java实现上传zip/rar压缩文件,自动解压

在pom中添加解压jar依赖4.0.0org.springframework.bootspring-boot-starter-parent2.1.2.RELEASEcom.hfuncompress0.0.1-SNAPSHOTuncompress上传压缩文件(rar或者zip格式),解压1.8org.springframework.bootspring-boot-starter-weborg.projectlomboklomboktrueorg.springframew…

从MapReduce的执行来看如何优化MaxCompute(原ODPS) SQL

摘要&#xff1a; SQL基础有这些操作&#xff08;按照执行顺序来排列&#xff09;&#xff1a; from join(left join, right join, inner join, outer join ,semi join) where group by select sum distinct count order by 如果我们能理解mapreduce是怎么实现这些SQL中的基本操…

套接字(socket)基本知识与工作原理

套接字&#xff08;socket&#xff09;基本知识与工作原理 一、Socket相关概念 Socket通常也称作“套接字”&#xff0c;用于描述IP地址和端口&#xff0c;是一个通信链的句柄。&#xff08;其实就是两个程序通信用的。&#xff09; SOCKET用于在两个基于TCP/IP协议的应用程序之…

python 多线程--重点知识

1.全局变量global的用法 2.多线程共享全局变量-args参数 注意args参数类型为元组&#xff0c;逗号不能少&#xff01;

Flask WTForm表单的使用

运行环境&#xff1a; python2.7 flask 0.11 flask-wtf 0.14.2 wtform能够通过一个类定义一些字段&#xff0c;这些字段会在前端生成标签&#xff0c;并且通过设置字段的验证规则&#xff0c;自动判断前端输入数据的格式。 一般用于用户登录&#xff0c;用户注册等信息录入。…

Java与C#个人之比较

网上这方面的比较文章已经有不少了&#xff0c;不过大都是要么从很高的角度说的&#xff0c;要么就是从底层说的&#xff0c;本人就以自己这几年的编程经历中的感受&#xff0c;来谈谈自己的体会。 相似性&#xff1a; Java和C#都是一门面向对象的语言&#xff0c;Java更多地…

java利用子类求正方形_Java程序设计实验2011

(2)掌握对象的声明和使用&#xff1b;(3)掌握构造方法的概念和使用&#xff1b;(4)掌握类及成员的访问控制符。2、实验任务(1)阅读下面的程序&#xff0c;在main()方法里添加语句完成如下的功能&#xff1a;①创建一个MyV alue类的对象myV alue。②为myV alue对象中的value域赋…

当导用模块与包的import与from的问题(模块与包的调用)

当在views.py里写impor models会不会报错呢&#xff1f; 1、Python里面的py文件都是每一行的代码。2、Python解释器去找一个模块的时候&#xff0c;只去sys.path的路径里找3、django项目启动&#xff08;django项目的启动文件是manage.py&#xff09;启动项目是将manage.py的路…

ack和seq

ACK (Acknowledgement&#xff09;&#xff0c;即确认字符&#xff0c;在数据通信中&#xff0c;接收站发给发送站的一种传输类控制字符。表示发来的数据已确认接收无误。 seq是序列号&#xff0c;这是为了连接以后传送数据用的&#xff0c;ack是对收到的数据包的确认&#xff…

MySQL中的information_schema

0.引言 近日在学习网络安全的sql注入时&#xff0c;用到mysql中的information_schema数据库&#xff0c;其思路是利用information_schema中的SCHEMA获取数据库中的table名称。现在对相关数据库进行总结&#xff0c;方便以后复习使用。 2.information_schema数据库 informati…

linux配置防火墙,开启端口

linux配置防火墙&#xff0c;开启端口 Centos7,配置防火墙&#xff0c;开启端口  1.查看已开放的端口(默认不开放任何端口)    firewall-cmd --list-ports  2.开启80端口    firewall-cmd --zonepublic(作用域) --add-port80/tcp(端口和访问类型) --permanent(永久…

使用Intel编译器系列合集

好的帖子&#xff1a;http://topic.csdn.net/u/20080327/16/071b45df-3795-4bf1-9c4d-da4eb5aaa739.html参考手册&#xff1a;http://software.intel.com/sites/products/documentation/studio/composer/en-us/2011Update/compiler_c/index.htm 说明&#xff1a;本系列文章为个…

【前端】这可能是你看过最全的css居中解决方案了~

1.水平居中&#xff1a;行内元素解决方案 适用元素&#xff1a;文字&#xff0c;链接&#xff0c;及其其它inline或者inline-*类型元素&#xff08;inline-block&#xff0c;inline-table&#xff0c;inline-flex&#xff09; html部分代码:<div>文字元素</div><…

java手机一款三国游戏_JAVA热游—富甲三国之雄霸天下原创心得

因为工作忙碌的关系&#xff0c;很长时间都没有来关注手机游戏论坛&#xff0c;这款富甲三国.雄霸天下&#xff0c;我也是前天才拿到手。游戏比想象中的简单&#xff0c;个人仅用了两个小时时间&#xff0c;就将三个人物全部通关。游戏的开始画面制作得比较精美&#xff0c;而且…