DFS+剪枝 HDOJ 5323 Solve this interesting problem

题目传送门

 1 /*
 2     题意:告诉一个区间[L,R],问根节点的n是多少
 3     DFS+剪枝:父亲节点有四种情况:[l, r + len],[l, r + len - 1],[l - len, r],[l - len -1,r];
 4 */
 5 #include <cstdio>
 6 #include <algorithm>
 7 #include <cstring>
 8 #include <cmath>
 9 #include <queue>
10 using namespace std;
11
12 typedef long long ll;
13 const int INF = 0x3f3f3f3f;
14 const ll INFL = 1e30;
15 ll ans;
16
17 void DFS(ll l, ll r)  {
18     if (l > r || l < 0) return ;
19     if (l == 0) {
20         ans = min (ans, r); return ;
21     }
22     ll len = r - l + 1;
23     if (l < len)    return ;
24     DFS (l, r + len);
25     if (len != 1)   DFS (l, r + len - 1);
26     DFS (l - len, r);   DFS (l - len - 1, r);
27 }
28
29 int main(void)  {       //HDOJ 5323 Solve this interesting problem
30     //freopen ("H.in", "r", stdin);
31
32     ll L, R;
33     while (scanf ("%I64d%I64d", &L, &R) == 2) {
34         if (L == 0)   {
35             if (R >= L) printf ("%I64d\n", R);
36             else    puts ("-1");
37             continue;
38         }
39         ans = INFL; DFS (L, R);
40         printf ("%I64d\n", (ans == INFL) ? -1 : ans);
41     }
42
43     return 0;
44 }
时间: 2024-08-25 17:32:32

DFS+剪枝 HDOJ 5323 Solve this interesting problem的相关文章

HDOJ 5323 Solve this interesting problem BFS搜索

BFS暴力搜索..... Solve this interesting problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 974    Accepted Submission(s): 263 Problem Description Have you learned something about segment tree?

hdu 5323 Solve this interesting problem dfs 搜索

链接:http://acm.hdu.edu.cn/showproblem.php?pid=5323 Solve this interesting problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1470    Accepted Submission(s): 420 Problem Description Have you

hdu 5323 Solve this interesting problem(dfs)

题目链接:hdu 5323 Solve this interesting problem 逆向思维,每次向左或向右翻倍,知道左端点为0时,即恰好满足的情况,处理处所有情况去取最小值. #include <cstdio> #include <cstring> #include <algorithm> using namespace std; typedef long long ll; const ll inf = 0x3f3f3f3f; ll L, R, N; void

HDU 5323 Solve this interesting problem

搜索... Solve this interesting problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 422    Accepted Submission(s): 98 Problem Description Have you learned something about segment tree? If not,

HDU 5323 SOLVE THIS INTERESTING PROBLEM 爆搜

链接 Solve this interesting problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 511    Accepted Submission(s): 114 Problem Description Have you learned something about segment tree? If not, d

【搜索】 HDU 5323 Solve this interesting problem

点击打开链接 用线段树方式建树 [ 0, n] 已知[ l, r] 结点 求n 若 建一个[0, 2*r] 的线段树  这是的总点数的奇的,(左子树!=右子树 [0, r]  在左子树里 则n最大为2*r 若 建一个[0, 2*r+1] 的线段树 (左子树==右子树 [0, r]  在左子树里 这时则 [0, r] 就可以建树 所以搜的时候超出2*r 就直接return #include <cstdio> #include <cstring> #include <cstdli

多校3 1008 Solve this interesting problem

Solve this interesting problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1020    Accepted Submission(s): 279 Problem Description Have you learned something about segment tree? If not, don’

HDU 5323(2015多校3)-Solve this interesting problem(dfs+剪枝)

题目地址:HDU 5323 题意:给一个l,r,表示区间[l,r],问是否存在区间为[0,n]的线段树的节点区间为[l,r],如果有求最小的n,如果没有输出-1. 思路:因为L/(R-L+1)<=2015,按照线段树的性质每次分区间序号扩大两倍,所以可以得出差不多有22层,所以用爆搜就可以,由上把[l,r]区间不断扩张,直到满足l==0为止.顺便剪剪枝. #include <stdio.h> #include <math.h> #include <string.h>

hdu5323(2015多校3)--Solve this interesting problem(万万没想到,,,)

题目链接:点击打开链接 题目大意:给出一个区间[l,r],问这个区间能不能是一个线段树上的一段,线段树为0到n,求最小的n是多少. 按照题目给出的区间向根部搜,由子区间推到父区间,有四种可能(左右区间和(l+r)的奇偶性): [ l , 2*r-l ] [ l , 2*r+1-l ] [ (l-1)*2-r , r ] [ (l-1)*2+1-r , r ] 按照这四种方式向上搜,加上剪枝就可以AC 原因是l/(r-l+1) <= 2015,那么每向上搜一次,下面的区间和会增加两倍,l/区间和也