判断一个 9x9 的数独是否有效。只需要根据以下规则,验证已经填入的数字是否有效即可。
数字 1-9 在每一行只能出现一次。
数字 1-9 在每一列只能出现一次。
数字 1-9 在每一个以粗实线分隔的 3x3 宫内只能出现一次。

上图是一个部分填充的有效的数独。
数独部分空格内已填入了数字,空白格用 '.' 表示。
示例 1:
输入:
[
["5","3",".",".","7",".",".",".","."],
["6",".",".","1","9","5",".",".","."],
[".","9","8",".",".",".",".","6","."],
["8",".",".",".","6",".",".",".","3"],
["4",".",".","8",".","3",".",".","1"],
["7",".",".",".","2",".",".",".","6"],
[".","6",".",".",".",".","2","8","."],
[".",".",".","4","1","9",".",".","5"],
[".",".",".",".","8",".",".","7","9"]
]
输出: true
示例 2:
输入:
[
["8","3",".",".","7",".",".",".","."],
["6",".",".","1","9","5",".",".","."],
[".","9","8",".",".",".",".","6","."],
["8",".",".",".","6",".",".",".","3"],
["4",".",".","8",".","3",".",".","1"],
["7",".",".",".","2",".",".",".","6"],
[".","6",".",".",".",".","2","8","."],
[".",".",".","4","1","9",".",".","5"],
[".",".",".",".","8",".",".","7","9"]
]
输出: false
解释: 除了第一行的第一个数字从 5 改为 8 以外,空格内其他数字均与 示例1 相同。
但由于位于左上角的 3x3 宫内有两个 8 存在, 因此这个数独是无效的。

  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4.  
  5. bool isValidSudoku(vector<vector<char>>& board) {
  6. for(int i=;i<;i++)//判断行列是否有重复
  7. {
  8. int a[]={};
  9. int a1[]={};
  10. for(int j=;j<;j++)
  11. {
  12. if(board[i][j]!='.')
  13. if(a[board[i][j]]==-) return false;
  14. else a[board[i][j]]=-;
  15. if(board[j][i]!='.')
  16. if(a1[board[j][i]]==-) return false;
  17. else a1[board[j][i]]=-;
  18. }
  19. }
  20.  
  21. for(int i=;i<;i+=)//判断小的宫格
  22. {
  23. for(int j=;j<;j+=)
  24. {
  25. int a[]={};
  26. for(int k=i;k<i+;k++)
  27. {
  28. for(int h=j;h<j+;h++)
  29. {
  30. if(board[k][h]!='.')
  31. if(a[board[k][h]]==-) return false;
  32. else a[board[k][h]]=-;
  33. }
  34. }
  35. }
  36. }
  37. return true;
  38. }
  39.  
  40. int main() {
  41. // vector<vector<char>> board={{'8', '3', '.', '.', '7', '.', '.', '.', '.'},
  42. // {'6', '.', '.', '1', '9', '5', '.', '.', '.'},
  43. // {'.', '9', '8', '.', '.', '.', '.', '6', '.'},
  44. // {'8', '.', '.', '.', '6', '.', '.', '.', '3'},
  45. // {'4', '.', '.', '8', '.', '3', '.', '.', '1'},
  46. // {'7', '.', '.', '.', '2', '.', '.', '.', '6'},
  47. // {'.', '6', '.', '.', '.', '.', '2', '8', '.'},
  48. // {'.', '.', '.', '4', '1', '9', '.', '.', '5'},
  49. // {'.', '.', '.', '.', '8', '.', '.', '7', '9'}};
  50. // vector<vector<char>> board={
  51. // {'5', '3', '.', '.', '7', '.', '.', '.', '.'},
  52. // {'6', '.', '.', '1', '9', '5', '.', '.', '.'},
  53. // {'.', '9', '8', '.', '.', '.', '.', '6', '.'},
  54. // {'8', '.', '.', '.', '6', '.', '.', '.', '3'},
  55. // {'4', '.', '.', '8', '.', '3', '.', '.', '1'},
  56. // {'7', '.', '.', '.', '2', '.', '.', '.', '6'},
  57. // {'.', '6', '.', '.', '.', '.', '2', '8', '.'},
  58. // {'.', '.', '.', '4', '1', '9', '.', '.', '5'},
  59. // {'.', '.', '.', '.', '8', '.', '.', '7', '9'}
  60. // };
  61. vector<vector<char>> board={{'.', '.', '.', '.', '', '.', '.', '', '.'},
  62. {'.', '', '.', '', '.', '.', '.', '.', '.'},
  63. {'.', '.', '.', '.', '.', '', '.', '.', ''},
  64. {'', '.', '.', '.', '.', '.', '.', '', '.'},
  65. {'.', '.', '', '.', '', '.', '.', '.', '.'},
  66. {'.', '', '', '.', '.', '.', '.', '.', '.'},
  67. {'.', '.', '.', '.', '.', '', '.', '.', '.'},
  68. {'.', '', '.', '', '.', '.', '.', '.', '.'},
  69. {'.', '.', '', '.', '.', '.', '.', '.', '.'}};
  70. bool ans=isValidSudoku(board);
  71. std::cout << ans << std::endl;
  72. return ;
  73. }

#leetcode刷题之路36-有效的数独的更多相关文章

  1. python -- leetcode 刷题之路

    第一题 给定一个整数数组和一个目标值,找出数组中和为目标值的两个数. 你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用. 示例: 给定 nums = [2, 7, 11, 15], tar ...

  2. 使用Java+Kotlin双语言的LeetCode刷题之路(三)

    BasedLeetCode LeetCode learning records based on Java,Kotlin,Python...Github 地址 序号对应 LeetCode 中题目序号 ...

  3. 使用Java+Kotlin双语言的LeetCode刷题之路(二)

    BasedLeetCode LeetCode learning records based on Java,Kotlin,Python...Github 地址 序号对应 LeetCode 中题目序号 ...

  4. 使用Java+Kotlin双语言的LeetCode刷题之路(一)

    LeetCode learning records based on Java,Kotlin,Python...Github 地址 序号对应 LeetCode 中题目序号 1 两数之和 给定一个整数数 ...

  5. #leetcode刷题之路40-组合总和 II

    给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合.candidates 中的每个数字在每个组合中只能使用一次.说 ...

  6. #leetcode刷题之路16-最接近的三数之和

    给定一个包括 n 个整数的数组 nums 和 一个目标值 target.找出 nums 中的三个整数,使得它们的和与 target 最接近.返回这三个数的和.假定每组输入只存在唯一答案. 例如,给定数 ...

  7. #leetcode刷题之路13-罗马数字转整数

    罗马数字包含以下七种字符: I, V, X, L,C,D 和 M.字符 数值I 1V 5X 10L 50C 100D 500M 1000例如, 罗马数字 2 写做 II ,即为两个并列的 1.12 写 ...

  8. #leetcode刷题之路6- Z 字形变换

    将一个给定字符串根据给定的行数,以从上往下.从左到右进行 Z 字形排列.比如输入字符串为 "LEETCODEISHIRING" 行数为 3 时,排列如下:L     C     I ...

  9. leetcode 刷题之路 64 Construct Binary Tree from Inorder and Postorder Traversal

    Given inorder and postorder traversal of a tree, construct the binary tree. Note: You may assume tha ...

随机推荐

  1. Android开发各种Utils收集库

    为方便查找,已进行大致归类,其目录如下所示: Activity相关→ActivityUtils.java→Demo isActivityExists : 判断是否存在Activity launchAc ...

  2. 调用Android中的软键盘

    我们在Android提供的EditText中单击的时候,会自动的弹 出软键盘,其实对于软键盘的控制我们可以通过InputMethodManager这个类来实现.我们需要控制软键盘的方式就是两种一个是像 ...

  3. RadioGroup实现类似ios的分段选择(UISegmentedControl)控件

    在ios7中有一种扁平风格的控件叫做分段选择控件UISegmentedControl,控件分为一排,横放着几个被简单线条隔开的按钮,每次点击只能选择其中一个按钮,他类似于tabbar但是又稍微有点区别 ...

  4. sql in interview for a job

    1.mysql下建表及插入数据 /* Navicat MySQL Data Transfer Source Server : mysql Source Server Version : 50640 S ...

  5. 禅道Bug管理工具环境搭建

    下载地址:http://sourceforge.net/projects/zentao/files/8.2/ZenTaoPMS.8.2.stable.exe/download 1.解压ZenTaoPM ...

  6. [UI] 精美UI界面欣赏[1]

    精美UI界面欣赏[1]

  7. 【数据结构】循环队列 C语言实现

    "Queue.h" #include "Queue.h" #include <stdio.h> #include <stdlib.h> ...

  8. Spring Security自定义GrantedAuthority前缀

    如果我们正使用Spring Security提供默认的基于方法的权限认证注解如下: @PreAuthorize("hasAnyRole('ADMIN', 'USER')") pub ...

  9. 铁乐学python_day01-和python有关的唠嗑

    铁乐学python_day01-和python有关的唠嗑 文:铁乐与猫 2018-03-16 01_python的历史 python的创始人为荷兰人吉多·范罗苏姆(Guido van Rossum). ...

  10. php面试题之一——php核心技术

    一.PHP核心技术 1.写出一个能创建多级目录的PHP函数(新浪网技术部) <?php /** * 创建多级目录 * @param $path string 要创建的目录 * @param $m ...