IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> C. Weird Sum(推公式) -> 正文阅读

[C++知识库]C. Weird Sum(推公式)

题干

Egor has a table of size n×m, with lines numbered from 1 to n and columns numbered from 1 to m. Each cell has a color that can be presented as an integer from 1 to 105.

Let us denote the cell that lies in the intersection of the r-th row and the c-th column as (r,c). We define the manhattan distance between two cells (r1,c1) and (r2,c2) as the length of a shortest path between them where each consecutive cells in the path must have a common side. The path can go through cells of any color. For example, in the table 3×4 the manhattan distance between (1,2) and (3,3) is 3, one of the shortest paths is the following: (1,2)→(2,2)→(2,3)→(3,3).

Egor decided to calculate the sum of manhattan distances between each pair of cells of the same color. Help him to calculate this sum.

Input
The first line contains two integers n and m (1≤n≤m, n?m≤100000) — number of rows and columns in the table.

Each of next n lines describes a row of the table. The i-th line contains m integers ci1,ci2,…,cim (1≤cij≤100000) — colors of cells in the i-th row.

Output
Print one integer — the the sum of manhattan distances between each pair of cells of the same color.

Examples
inputCopy
2 3
1 2 3
3 2 1
outputCopy
7
inputCopy
3 4
1 1 2 2
2 1 1 2
2 2 1 1
outputCopy
76
inputCopy
4 4
1 1 2 3
2 1 1 2
3 1 2 1
1 1 2 1
outputCopy
129
Note
In the first sample there are three pairs of cells of same color: in cells (1,1) and (2,3), in cells (1,2) and (2,2), in cells (1,3) and (2,1). The manhattan distances between them are 3, 1 and 3, the sum is 7.

题意

给矩阵中每个单元格涂上颜色,求出所有相同颜色的单元格距离之和。
距离 == abs(x1-x2) + abs(y1-y2)

思路

用vector存储颜色相同的坐标,方便遍历。
我尝试找到答案与整体坐标的关系,太菜了,最后还是看的别人推出的公式。
两个相同颜色单元格的距离 即 横坐标之差 加 纵坐标之差,那么在颜色相同的单元格中:
任意两个单元格的距离之和 = 任意两个单元格的横坐标差之和 + 这两个单元格的纵坐标差之和。
我们可以分开计算横、纵坐标差之和。

横坐标差之和:
在这里插入图片描述
将横坐标升序排列,遍历所有坐标,第 i 个坐标与前面所有坐标差之和为
xi * (i-1) - (x1+x2+x3+… …+xi-1);
例如 i == 1时,第1个坐标与前面所有坐标差之和为:x1 * 0 - 0
i == 2时为:x2 * 1 - (x1)
i == 3时为:x3 * 2 - (x1 + x2)
i == 4时为:x4 * 3 - (x1 + x2 + x3)

上述各式之和即为 任意两个相同颜色单元格横坐标之和。
纵坐标同理。

代码

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <set>
#include <vector>
#include <cstring>
#include <string>
#include <string.h>
using namespace std;

typedef long long ll;
const int N = 1e5+10, M = 1e6+10;

typedef struct node{
    int x,y;
};
bool cmp1(node a, node b){
    return a.x < b.x;
}
bool cmp2(node a, node b){
    return a.y<b.y;
}
vector<node> v[N];
int a[1010][1010];
int main(){
    int n,m,r=0;
    scanf("%d%d",&n,&m);
    for(int i=0;i<n;i++)
        for(int j=0;j<m;j++){
            int a;
            scanf("%d",&a);
            if(a>r)//r 为颜色种类数
                r=a;
            v[a].push_back({i, j});
        }
    ll ans=0;
    for(int i=1;i<=r;i++){
        ll s=0;
        sort(v[i].begin(), v[i].end(), cmp1);//横坐标
        for(ll j=0;j<v[i].size();j++){
            ans+= j * v[i][j].x - s;
            s+=v[i][j].x;
        }

        s=0;
        sort(v[i].begin(), v[i].end(), cmp2);//纵坐标
        for(ll j=0;j<v[i].size();j++){
            ans+= j * v[i][j].y - s;
            s+=v[i][j].y;
        }
    }
    printf("%lld",ans);
    return 0;
}

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-16 22:04:24  更:2022-03-16 22:06:40 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:43:53-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码