题目大意

智能手机九点屏幕滑动解锁,如果给出某些连接线段,求出经过所有给出线段的合法的滑动解锁手势的总数。题目链接: 
滑动解锁

题目分析

首先,尝试求解没有给定线段情况下,所有合法的路径的总数。可以使用dfs进行搜索。代码如下:

void dfs(int row, int col, int cur_len) {
visited[row][col] = true;
if (cur_len >= 4) { //到达该点时,走过的路径长度大于等于4,则为合法的一个解锁手势
total_count++;
}
if (cur_len == 10)
return;
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
int next_row = (row + i) % 3;
int next_col = (col + j) % 3;
if (!visited[next_row][next_col]) {
//可能出现当前点和下一个点的连线上经过了另一个点的情况,进行判断。如果
//经过的另一个点之前被访问过,则这次仍然是合法的。
if (abs(row - next_row) == 2 && abs(col - next_col) != 1 ||
abs(col - next_col) == 2 && abs(row - next_row) != 1) {
int mid_row = (row + next_row) / 2;
int mid_col = (col + next_col) / 2;
if (!visited[mid_row][mid_col]) {
continue;
}
}
int cur = 3 * row + col;
int next = 3 * next_row + next_col;
dfs(next_row, next_col, cur_len + 1, need_use, cur_used + 1);
}
}
}
visited[row][col] = false;
}

在上面的dfs搜索基础上,添加对已有线段的限制。9个点,维护 connected[9][9], connected[i][j] 表示已经有线段将i和j连接。搜索的时候,还需要维护状态,cur_used表示当前已经经过了已有线段的数目,如果已经经过了所有的线段。且当前路径经过点数大于等于4,则是一个合法的解锁路径。

实现

#include<iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
bool visited[3][3];
bool connected[9][9];
int total_count;
//cur_len 为到达row,col点时候,路径的长度; cur_used表示已经走过的路径所覆盖的已有线段的个数
void dfs(int row, int col, int cur_len, int need_use, int cur_used) {
visited[row][col] = true;
if (cur_len >= 4 && need_use == cur_used) {
total_count++;
}
if (cur_len == 10)
return;
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
int next_row = (row + i) % 3;
int next_col = (col + j) % 3;
if (!visited[next_row][next_col]) {
if (abs(row - next_row) == 2 && abs(col - next_col) != 1 ||
abs(col - next_col) == 2 && abs(row - next_row) != 1) {
int mid_row = (row + next_row) / 2;
int mid_col = (col + next_col) / 2;
if (!visited[mid_row][mid_col]) {
continue;
}
}
int cur = 3 * row + col;
int next = 3 * next_row + next_col;
if(connected[cur][next])
dfs(next_row, next_col, cur_len + 1, need_use, cur_used + 1);
else
dfs(next_row, next_col, cur_len + 1, need_use, cur_used);
}
}
}
visited[row][col] = false;
}
void GetCount(int need_use) {
for (int row = 0; row < 3; row++) {
for (int col = 0; col < 3; col++) {
dfs(row, col, 1, need_use, 0);
}
}
}
int main() {
memset(visited, false, sizeof(visited));
int T, need_use, u, v;
scanf("%d", &T);
while (T--) {
total_count = 0;
memset(connected, false, sizeof(connected));
scanf("%d", &need_use);
for (int i = 0; i < need_use; i++) {
scanf("%d %d", &u, &v);
connected[u-1][v-1] = connected[v-1][u-1] = true;
}
GetCount(need_use);
printf("%d\n", total_count);
}
return 0;
}

hiho_1054_滑动解锁的更多相关文章

  1. hihocoder#1054 : 滑动解锁(深度优先搜索)

    描述 滑动解锁是智能手机一项常用的功能.你需要在3x3的点阵上,从任意一个点开始,反复移动到一个尚未经过的"相邻"的点.这些划过的点所组成的有向折线,如果与预设的折线在图案.方向上 ...

  2. Swift: 打造滑动解锁文字动画

    原文:Swift: 打造滑动解锁文字动画 最近木事,找出来玩了玩facebook的paper.到处都是那个"slide to unlock your phone"的效果啊.忽闪忽闪 ...

  3. Selenium模拟JQuery滑动解锁

    滑动解锁一直做UI自动化的难点之一,我补一篇滑动解锁的例子,希望能给初做Web UI自动化测试的同学一些思路. 首先先看个例子. https://www.helloweba.com/demo/2017 ...

  4. hihocoder 1054 滑动解锁 dfs

    详细分析见滑动解锁分析 AC代码 #include <cstdio> #include <cmath> #include <cctype> #include < ...

  5. C语言 · 滑动解锁

    题目:滑动解锁 滑动解锁是智能手机一项常用的功能.你需要在3x3的点阵上,从任意一个点开始,反复移动到一个尚未经过的"相邻"的点.这些划过的点所组成的有向折线,如果与预设的折线在图 ...

  6. jq实现简单的滑动解锁效果

    <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...

  7. APP九宫格滑动解锁的处理

    写手机自动化测试脚本关于APP九宫格滑动解锁方面采用了appium API 之 TouchAction 操作. 先是用uiautomatorviewer.bat查询APP元素坐标: 手工计算九宫格每个 ...

  8. 【转】Selenium模拟JQuery滑动解锁

    滑动解锁一直做UI自动化的难点之一,我补一篇滑动解锁的例子,希望能给初做Web UI自动化测试的同学一些思路. 首先先看个例子. https://www.helloweba.com/demo/2017 ...

  9. css3做ipone当时的滑动解锁闪亮条

    现在一般的登录 注册 什么  的页面,都是会做个滑动验证.一般都是像IPONE早期那个 滑动开屏的效果 ,这个效果现在可以用CSS3来实现. 主要用到几个属性 background 背景使用渐变属性, ...

随机推荐

  1. U3D UGUI学习4 - Text

    1.对应NGUI的四种文字显示模式 Shrink Content 对应NGUI第一种模式     勾选Best Fit 但似乎有一个Bug,文字过多的时候会爆框.解决方法是改变Line Spacing ...

  2. Linux内存模型

    http://blog.csdn.net/sunyubo458/article/details/6090946 了解linux的内存模型,或许不能让你大幅度提高编程能力,但是作为一个基本知识点应该熟悉 ...

  3. 2016 Al-Baath University Training Camp Contest-1 D

    Description X is well known artist, no one knows the secrete behind the beautiful paintings of X exc ...

  4. anroid开发者专用vpn

    http://android.vpn.ac.cn/

  5. CodeForces 651B Beautiful Paintings 贪心

    A. Joysticks time limit per test 1 second memory limit per test 256 megabytes input standard input o ...

  6. dictionaryWithObjectsAndKeys

    NSDictionary    dictionaryWithObjectsAndKeys NSDictionary *parmDic = [NSDictionary dictionaryWithObj ...

  7. Linux源代码分析工具链

    前言 看源代码是一个程序员必须经历的事情,也是可以提升能力的一个捷径.个人认为: 要完全掌握一个软件的方法只有阅读源码. 在Windows下有sourceinsight这个源码阅读软件(虽然我没用过, ...

  8. AVL学习笔记

    AVL,平衡二叉查找树.删除,插入,查找的复杂度都是O(logn).它是一棵二叉树.对于每个节点来说,它的左孩子的键值都小于它,右孩子的键值都大于它.对于任意一个节点,它的左右孩子的高度差不大于1.树 ...

  9. iOS深入学习(UITableView系列4:使用xib自定义cell)

    可以通过继承UITableViewCell重新自定义cell,可以像下面一样通过代码来自定义cell,但是手写代码总是很浪费时间, ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ...

  10. [C程序设计语言]第一部分

    声明:原创作品,转载时请注明文章来自SAP师太技术博客( 博/客/园www.cnblogs.com):www.cnblogs.com/jiangzhengjun,并以超链接形式标明文章原始出处,否则将 ...