给你n个数,a1....an,求(ai+aj)^ak最大的值,i不等于j不等于k

思路:先建字典树,暴力i,j每次删除他们,然后贪心找k,再恢复i,j,每次和答案取较大的,就是答案,有关异或的貌似很多都用字典树,也是醉了

  1. /*Problem : 5536 ( Chip Factory ) Judge Status : Accepted
  2. RunId : 15506230 Language : G++ Author : qianbi08*/
  3.  
  4. #include<iostream>
  5. #include<cstdio>
  6. #include<cstdlib>
  7. #include<cmath>
  8. #include <algorithm>
  9. #include<cstring>
  10. using namespace std;
  11. const int maxn=;
  12. int node[maxn][],cnt,re[maxn];
  13. int a[];
  14. int newnode()
  15. {
  16. ++cnt;
  17. node[cnt][]=node[cnt][]=-;
  18. re[cnt]=;
  19. return cnt;
  20. }
  21. void update(int v,int d)
  22. {
  23. int u=;
  24. for(int i=; i>=; --i)
  25. {
  26. int c=(v>>i)&;
  27. if(node[u][c]==-)
  28. node[u][c]=newnode();
  29. u=node[u][c];
  30. re[u]+=d;
  31. }
  32. }
  33. int getans(int v)
  34. {
  35. int u=,ans=;
  36. for(int i=; i>=; --i)
  37. {
  38. if(u==-)break;
  39. int c=(v>>i)&;
  40. if(node[u][c^]!=-&&re[node[u][c^]])
  41. {
  42. ans=(ans|(<<i));
  43. u=node[u][c^];
  44. }
  45. else u=node[u][c];
  46. }
  47. return ans;
  48. }
  49. int main()
  50. {
  51. int T;
  52. scanf("%d",&T);
  53. while(T--)
  54. {
  55. int n;
  56. scanf("%d",&n);
  57. cnt=;
  58. node[][]=node[][]=-;
  59. re[]=;
  60. for(int i=; i<=n; ++i)
  61. scanf("%d",&a[i]),update(a[i],);
  62. int ans=;
  63. for(int i=; i<n; ++i)
  64. {
  65. update(a[i],-);
  66. for(int j=i+; j<=n; ++j)
  67. {
  68. update(a[j],-);
  69. ans=max(ans,getans(a[i]+a[j]));
  70. update(a[j],);
  71. }
  72. update(a[i],);
  73. }
  74. printf("%d\n",ans);
  75. }
  76. return ;
  77. }

HDU 5536 Chip Factory 字典树+贪心的更多相关文章

  1. HDU 5536 Chip Factory 字典树

    Chip Factory Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid= ...

  2. hdu 5536 Chip Factory 字典树+bitset 铜牌题

    Chip Factory Time Limit: 18000/9000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)T ...

  3. HDU 5536 Chip Factory 【01字典树删除】

    题目传送门:http://acm.hdu.edu.cn/showproblem.php?pid=5536 Chip Factory Time Limit: 18000/9000 MS (Java/Ot ...

  4. ACM学习历程—HDU 5536 Chip Factory(xor && 字典树)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5536 题目大意是给了一个序列,求(si+sj)^sk的最大值. 首先n有1000,暴力理论上是不行的. ...

  5. HDU 5536 Chip Factory (暴力+01字典树)

    <题目链接> 题目大意: 给定一个数字序列,让你从中找出三个不同的数,从而求出:$\max_{i,j,k} (s_i+s_j) \oplus s_k$的值. 解题分析:先建好01字典树,然 ...

  6. hdu5536 Chip Factory 字典树+暴力 处理异或最大 令X=(a[i]+a[j])^a[k], i,j,k都不同。求最大的X。

    /** 题目:hdu5536 Chip Factory 链接:http://acm.hdu.edu.cn/showproblem.php?pid=5536 题意:给定n个数,令X=(a[i]+a[j] ...

  7. hdu 5536 Chip Factory (01 Trie)

    链接:http://acm.hdu.edu.cn/showproblem.php?pid=5536 题面; Chip Factory Time Limit: 18000/9000 MS (Java/O ...

  8. HDU 5536 Chip Factory

    Chip Factory Time Limit: 18000/9000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)T ...

  9. 2015ACM/ICPC亚洲区长春站 J hdu 5536 Chip Factory

    Chip Factory Time Limit: 18000/9000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)T ...

随机推荐

  1. Tomcat 搭配 Nginx 还是 Apache 呢?

    Apache .Tomcat.Nginx的区别, 哪个与Tomcat搭配效率高? 一. 定义: 1. Apache Apache HTTP服务器是一个模块化的服务器,可以运行在几乎所有广泛使用的计算机 ...

  2. 如何在Linux下重命名多个文件

    在Linux中,当你想要改变一个文件名,使用mv命令就好了.然而mv不能使用通配符重命名多个文件.可以用sed.awk或者与xargs结合使用来处理多个文件的情况.然而,这些命令行即繁琐又不友好,并且 ...

  3. poj 3207 Ikki's Story IV - Panda's Trick (2-SAT)

    http://poj.org/problem?id=3207 Ikki's Story IV - Panda's Trick Time Limit: 1000MS   Memory Limit: 13 ...

  4. 'vt100': unknown terminal type.

    在Linux终端执行clear或top命令时出现:vt100: unknown terminal type的错误 1.临时办法,下次启动失效,需要重新执行 执行以下命令 $ printenv | gr ...

  5. Hibernate-Validation的使用

    首先是要加入下面两个包 hibernate-validator-4.1.0.Final.jar validation-api-1.0.0.GA.jar 如果在验证不通过的时候进行了添加.更新或删除操作 ...

  6. SQL注入file导入常用手段

    在注入过程中,如果存在注入点,可以直接导入一句话或者上传页面.过程中我们主要是利用into outfile函数进行上传.此处介绍两种关于into outfile利用的方式. 第一种直接将select内 ...

  7. jasper ireport create a report with parameters without sql query

    I'm new in jasper ireport , and I want to know if it is possible to create a report only with static ...

  8. objective-c宏定义

    1.先来几个常用的: // 是否高清屏 #define isRetina ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? ...

  9. &&运算符和||运算符的优先级问题

    package priority; public class TestAndOrPriority { /* * &&的优先级高就不代表 他会先运行 ||的右边 而是说会把右边用& ...

  10. js setTimeout深度递归后完成回调

    setTimout原型: iTimerID = window.setTimeout(vCode, iMilliSeconds [, sLanguage])     setTimeout有两种形式 se ...