HNU Joke with permutation (深搜dfs)

题目链接:http://acm.hnu.cn/online/?action=problem&type=show&id=13341&courseid=0

Joke with permutation
Time Limit: 3000ms, Special Time Limit:7500ms, Memory Limit:65536KB
Total submit users: 85, Accepted users: 57
Problem 13341 : Special judge
Problem description

Joey had saved a permutation of integers from 1 to n in a text file. All the numbers were written as decimal numbers without leading spaces.

Then Joe
made a practical joke on her: he removed all the spaces in the file.

Help
Joey to restore the original permutation after the Joe’s joke!

Input

The input file contains a single line with a single string — the Joey’s
permutation without spaces.

The Joey’s permutation had at least 1 and at
most 50 numbers.

Output

Write a line to the output file with the restored permutation. Don’t forget
the spaces!

If there are several possible original permutations, write
any one of them.

Sample Input
4111109876532
Sample Output
4 1 11 10 9 8 7 6 5 3 2
Problem Source
NEERC 2014

Submit   Discuss   Judge Status  Problems  Ranklist 

题目大意:将一串完整的字符串分成1~n个数。将空格补进去,并将其输出。

解题思路:1、注意这个n是可以求出来的

     2、一个数字一个数字比较,只要满足这个数字小于n,还有保证这个数字没有访问过就ok啦

   

详见代码。

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4
 5 using namespace std;
 6
 7 int n,flag;
 8 char ch[110];
 9 int ans[110];
10 bool vis[110];
11
12 bool dfs(int i,int k)
13 {
14     if (flag==1)
15         return true;
16     if (k==n+1)
17     {
18         for (int i=1;i<k-1;i++)
19         {
20             printf ("%d ",ans[i]);
21         }
22         printf ("%d\n",ans[k-1]);
23         flag=1;
24         return true;
25     }
26     if (ch[i]-‘0‘<=n&&!vis[ch[i]-‘0‘]&&ch[i]-‘0‘>0)
27     {
28         ans[k]=ch[i]-‘0‘;
29         vis[ch[i]-‘0‘]=1;
30         if(dfs(i+1,k+1)) return true;
31         vis[ch[i]-‘0‘]=0;
32     }
33     if ((ch[i]-‘0‘)*10+ch[i+1]-‘0‘<=n&&(ch[i]-‘0‘)*10+ch[i+1]-‘0‘>9&&!vis[(ch[i]-‘0‘)*10+ch[i+1]-‘0‘])
34     {
35         ans[k]=(ch[i]-‘0‘)*10+ch[i+1]-‘0‘;
36         vis[(ch[i]-‘0‘)*10+ch[i+1]-‘0‘]=1;
37         if(dfs(i+2,k+1)) return true;
38         vis[(ch[i]-‘0‘)*10+ch[i+1]-‘0‘]=0;
39     }
40     return false;
41 }
42
43 int main()
44 {
45     while (scanf("%s",ch)!=EOF)
46     {
47         flag=0;
48         memset(ans,0,sizeof(ans));
49         memset(vis,0,sizeof(vis));
50         int len=strlen(ch);
51         if (len>9)
52             n=(len-9)/2+9;
53         else
54             n=len;
55         dfs(0,1);//dfs();
56     }
57     return 0;
58 }
时间: 2024-11-05 22:03:24

HNU Joke with permutation (深搜dfs)的相关文章

hdu1881 毕业bg(深搜dfs)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1881 Problem Description 每年毕业的季节都会有大量毕业生发起狂欢,好朋友们相约吃散伙饭,网络上称为"bg".参加不同团体的bg会有不同的感觉,我们可以用一个非负整数为每个bg定义一个"快乐度".现给定一个bg列表,上面列出每个bg的快乐度.持续长度.bg发起人的离校时间,请你安排一系列bg的时间使得自己可以获得最大的快乐度. 例如有4场bg: 第1场

hdu 1518 Square(深搜dfs)

转载请注明出处:http://blog.csdn.net/u012860063?viewmode=contents 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1518 --------------------------------------------------------------------------------------------------------------------------------------------

HDU 2553 N皇后问题(深搜DFS)

N皇后问题 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1757    Accepted Submission(s): 772   Problem Description 在N*N的方格棋盘放置了N个皇后,使得它们不相互攻击(即任意2个皇后不允许处在同一排,同一列,也不允许处在与棋盘边框成45角的斜线上.你的任务是,对于给定的N,求出

poj1562 Oil Deposits(深搜dfs)

转载请注明出处:http://blog.csdn.net/u012860063?viewmode=contents 题目链接:http://poj.org/problem?id=1562 ---------------------------------------------------------------------------------------------------------------------------------------------------------- 欢

算法学习笔记 二叉树和图遍历—深搜 DFS 与广搜 BFS

图的深搜与广搜 马上又要秋招了,赶紧复习下基础知识.这里复习下二叉树.图的深搜与广搜.从图的遍历说起,图的遍历方法有两种:深度优先遍历(Depth First Search), 广度优先遍历(Breadth First Search),其经典应用走迷宫.N皇后.二叉树遍历等.遍历即按某种顺序访问"图"中所有的节点,顺序分为: 深度优先(优先往深处走),用的数据结构是栈, 主要是递归实现: 广度优先(优先走最近的),用的数据结构是队列,主要是迭代实现: 对于深搜,由于递归往往可以方便的利

深搜(DFS),回溯,Fire Net

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=2 解题报告: 这里的深搜有一点不同,就是,在深搜每一个点时,都要深搜每一个点,就是一个完全二叉树. 借鉴:http://blog.csdn.net/zxy_snow/article/details/5952668 #include <stdio.h> #include <iostream> #include <stdlib.h> using

算法学习笔记(六) 二叉树和图遍历—深搜 DFS 与广搜 BFS

图的深搜与广搜 复习下二叉树.图的深搜与广搜. 从图的遍历说起.图的遍历方法有两种:深度优先遍历(Depth First Search), 广度优先遍历(Breadth First Search),其经典应用走迷宫.N皇后.二叉树遍历等.遍历即按某种顺序訪问"图"中全部的节点,顺序分为: 深度优先(优先往深处走),用的数据结构是栈, 主要是递归实现. 广度优先(优先走近期的).用的数据结构是队列.主要是迭代实现. 对于深搜.因为递归往往能够方便的利用系统栈,不须要自己维护栈.所以通常实

poj1321 棋盘问题(深搜dfs)

转载请注明出处:http://blog.csdn.net/u012860063? viewmode=contents 题目链接:id=1321">http://poj.org/problem?id=1321 -----------------------------------------------------------------------------------------------------------------------------------------------

POJ 2488 深搜dfs、

题意:模拟国际象棋中马的走棋方式,其实和中国象棋的马走的方式其实是一样的,马可以从给定的方格棋盘中任意点开始,问是否能遍历全部格子,能的话输出字典序最小的走棋方式,否则输出impossible 思路:只要能遍历全部的格子,就一定会走A1这个点,而且这个点的字典序是最小的,保证了这点的话还需要保证dfs的8个方向也要按照字典序最小来走,这样就可以确保所走的路径就是字典序最小的 坑爹:自己忘记输出Scenario #i,一连WA了几发,就是不知道自己错在哪里,顺便发一个对照的程序吧我的程序过16MS