博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode Weekly Contest 146
阅读量:5069 次
发布时间:2019-06-12

本文共 1379 字,大约阅读时间需要 4 分钟。

1128. Number of Equivalent Domino Pairs

Given a list of dominoesdominoes[i] = [a, b] is equivalent to dominoes[j] = [c, d] if and only if either (a==c and b==d), or (a==dand b==c) - that is, one domino can be rotated to be equal to another domino.

Return the number of pairs (i, j) for which 0 <= i < j < dominoes.length, and dominoes[i] is equivalent to dominoes[j].

 

Example 1:

Input: dominoes = [[1,2],[2,1],[3,4],[5,6]]Output: 1

 

Constraints:

  • 1 <= dominoes.length <= 40000
  • 1 <= dominoes[i][j] <= 9

题目大意:给你一个数字键值对数组,让你判断有多少个数组元素是相等的。两个键值对相等的条件是:键1=键2并且值1=值2或者键1=值2并且键2=值1。

思路:将键值的和中放前面加上“_”以及键值中较小的数作为map的key存入map,然后遍历map求和就好。(其实可以将键值中较小的数乘100或者1000然后加上大的那个数作为key,但是竞赛的时候,脑子没转过来,就用了这个方法,也是AC了)

class Solution {    public int numEquivDominoPairs(int[][] dominoes) {        Map
map = new HashMap<>(); int len = dominoes.length; for(int i=0; i
b ) te = te + b; else te = te + a; Integer cnt = map.get(te); if( cnt==null ) { map.put(te, 1); } else { map.put(te, cnt+1); } } int sum = 0; for(Map.Entry
entry : map.entrySet() ) { int v = entry.getValue(); sum += (v*(v-1))/2; } return sum; }}
View Code

 

转载于:https://www.cnblogs.com/Asimple/p/11258542.html

你可能感兴趣的文章
硬件笔记之Thinkpad T470P更换2K屏幕
查看>>
iOS开发——缩放图片
查看>>
HTTP之URL的快捷方式
查看>>
满世界都是图论
查看>>
配置链路聚合中极小错误——失之毫厘谬以千里
查看>>
蓝桥杯-分小组-java
查看>>
Android Toast
查看>>
iOS开发UI篇—Quartz2D使用(绘制基本图形)
查看>>
docker固定IP地址重启不变
查看>>
桌面图标修复||桌面图标不正常
查看>>
JavaScript基础(四)关于对象及JSON
查看>>
JAVA面试常见问题之Redis篇
查看>>
jdk1.8 api 下载
查看>>
getElement的几中属性介绍
查看>>
HTML列表,表格与媒体元素
查看>>
雨林木风 GHOST_XP SP3 快速装机版YN12.08
查看>>
java对象的深浅克隆
查看>>
数据结构3——浅谈zkw线段树
查看>>
Introduction to my galaxy engine 2: Depth of field
查看>>
Python 3.X 练习集100题 05
查看>>