1. import java.util.HashMap;
  2. import java.util.Iterator;
  3. import java.util.LinkedList;
  4. import java.util.Scanner;
  5. public class Main {
  6. private static Scanner cin;
  7. private static LinkedList<Integer>[] list;
  8. private static HashMap equationCalced;
  9. private static HashMap calculatedN;
  10. public static void init() {
  11. list=new LinkedList[6];
  12. list[0] = new LinkedList<Integer>();
  13. list[0].add(1);//2 match can represent 1
  14. list[1] = new LinkedList<Integer>();
  15. list[1].add(7);//3 match can represent 7
  16. list[2] = new LinkedList<Integer>();
  17. list[2].add(4);//4 match can represent 4
  18. list[3] = new LinkedList<Integer>();
  19. list[3].add(2);//5 match can represent 2
  20. list[3].add(3);//5 match can represent 3
  21. list[3].add(5);//5 match can represent 5
  22. list[4] = new LinkedList<Integer>();
  23. list[4].add(0);//6 match can represent 0
  24. list[4].add(6);//6 match can represent 6
  25. list[4].add(9);//6 match can represent 9
  26. list[5] = new LinkedList<Integer>();
  27. list[5].add(8);//7 match can represent 8
  28. equationCalced = new HashMap();
  29. calculatedN = new HashMap();
  30. }
  31. public static void main(String args[]) throws Exception {
  32. cin = new Scanner(System.in);
  33. int n = cin.nextInt();
  34. Main.init();
  35. int matchesForDigit = n-4;
  36. //we need at least 12 matches, the equation is 1+1=2
  37. if(n<13) {
  38. System.out.println(0);
  39. }else {
  40. System.out.println(calc(matchesForDigit));
  41. }
  42. }
  43. //calc digit which can be represented by n matches
  44. public static int calc(int n) {
  45. //LinkedList<Integer> digitList = new LinkedList<Integer>();
  46. int ret = 0;
  47. //get the first digit
  48. for(int i=2;i<=n-4;i++) {
  49. LinkedList<String> listA = digitWithMatchN(i);
  50. if(null == listA) {
  51. continue;
  52. }
  53. for(int j=2;j<=n-i-2;j++) {
  54. LinkedList<String> listB = digitWithMatchN(j);
  55. LinkedList<String> listC = digitWithMatchN(n-i-j);
  56. if (null == listB || null == listC) {
  57. continue;
  58. }
  59. Object[] arrayA = listA.toArray();
  60. Object[] arrayB = listB.toArray();
  61. Object[] arrayC = listC.toArray();
  62. for(int x=0;x<arrayA.length;x++) {
  63. for(int y=0;y<arrayB.length;y++) {
  64. for(int z=0;z<arrayC.length;z++) {
  65. long a = Long.valueOf((String)arrayA[x]);
  66. long b = Long.valueOf((String)arrayB[y]);
  67. long c = Long.valueOf((String)arrayC[z]);
  68. if(a + b == c) {
  69. if (equationCalced.containsKey(String.format("%d+%d", a,b))) {
  70. continue;
  71. }else {
  72. ret++;
  73. equationCalced.put(String.format("%d+%d", a,b), c);
  74. }
  75. }
  76. }
  77. }
  78. }
  79. }
  80. }
  81. return ret;
  82. }
  83. public static LinkedList<String> digitWithMatchN(int n) {
  84. if(calculatedN.containsKey(n)) {
  85. return (LinkedList<String>)calculatedN.get(n);
  86. }
  87. LinkedList<String> retList = new LinkedList<String>();
  88. if(n == 0) {
  89. return null;
  90. }else if(n==1) {
  91. //this match list can not present the right digit
  92. return null;
  93. }else if(n == 2){
  94. //return digit 1
  95. retList.add("1");
  96. }else if(n == 3) {
  97. //return digit 7
  98. retList.add("7");
  99. }else {
  100. for(int i=2;i<=7 && i<=n;i++) {
  101. Iterator<Integer> ai = list[i-2].iterator();
  102. //iterate digit in list[i-2]
  103. if(0 == n-i) {
  104. while(ai.hasNext()) {
  105. String tmpStr = String.valueOf(ai.next());
  106. retList.add(tmpStr);
  107. }
  108. }else {
  109. LinkedList<String> tmp = digitWithMatchN(n-i);
  110. if(null == tmp) {// n-1 match can not represent the right digit
  111. continue;
  112. }
  113. while(ai.hasNext()) {
  114. String tmpStr = String.valueOf(ai.next());
  115. Iterator tmpIt = tmp.iterator();
  116. boolean hasNext = false;
  117. while (tmpIt.hasNext()) {
  118. hasNext = true;
  119. String tmpStr2 = (String)tmpIt.next();
  120. if(tmpStr.equals("0")) {
  121. break;//if the prefix is 0, this digit is not illegal
  122. }else {
  123. retList.add(tmpStr +tmpStr2);
  124. }
  125. }
  126. if (!hasNext) {
  127. retList.add(tmpStr);
  128. }
  129. }
  130. }
  131. }
  132. }
  133. if(!calculatedN.containsKey(n)) {
  134. calculatedN.put(n, retList);
  135. }
  136. return retList;
  137. }
  138. }

Java实现 洛谷 P1149 火柴棒等式的更多相关文章

  1. 用Python写算法题--洛谷P1149 火柴棒等式

    题目 题目来源 P1149 火柴棒等式,https://www.luogu.org/problem/P1149 题目描述 给你n根火柴棍,你可以拼出多少个形如"A+B=C"的等式? ...

  2. [NOIP2008] 提高组 洛谷P1149 火柴棒等式

    题目描述 给你n根火柴棍,你可以拼出多少个形如“A+B=C”的等式?等式中的A.B.C是用火柴棍拼出的整数(若该数非零,则最高位不能是0).用火柴棍拼数字0-9的拼法如图所示: 注意: 加号与等号各自 ...

  3. 洛谷P1149 火柴棒等式

    题目描述 给你n根火柴棍,你可以拼出多少个形如“A+B=C”的等式?等式中的A.B.C是用火柴棍拼出的整数(若该数非零,则最高位不能是0).用火柴棍拼数字0-9的拼法如图所示: 注意: 1.加号与等号 ...

  4. 洛谷 P1149 火柴棒等式

    嗯....   这道题好讨厌啊!!!!   一开始莫名RE,然后发现数组小了,然后发现后面几个点总是WA,原来推的少了....   并且这道题的思路真的好水啊!!   先看一下题: 题目描述 给你n根 ...

  5. 洛谷P1149.火柴棒等式(暴力搜索)

    题目描述 给你n根火柴棍,你可以拼出多少个形如"A+B=C"的等式?等式中的A.B.C是用火柴棍拼出的整数(若该数非零,则最高位不能是0).用火柴棍拼数字0-9的拼法如图所示: 注 ...

  6. (水题)洛谷 - P1149 - 火柴棒等式

    https://www.luogu.org/problemnew/show/P1149 一开始还分类重复了.在非0的dfs中居然赋值了0,脑残得一笔. 其实就按 $lead0$ 分类就好了, $lea ...

  7. luogu P1149 火柴棒等式

    题目描述 给你n根火柴棍,你可以拼出多少个形如“A+B=C”的等式?等式中的A.B.C是用火柴棍拼出的整数(若该数非零,则最高位不能是0).用火柴棍拼数字0-9的拼法如图所示: 注意: 加号与等号各自 ...

  8. (函数)P1149 火柴棒等式

    题解: #include<stdio.h>int a[10]={6,2,5,5,4,5,6,3,7,6};int num(int n){                          ...

  9. [折腾笔记] 洛谷P1149-火柴棒等式 AC记

    原题链接: https://www.luogu.org/problem/P1149 题面简述: 给你n根火柴棍,你可以拼出多少个形如"A+B=C""A+B=C" ...

随机推荐

  1. CODING 敏捷实战系列课第五讲:敏捷中国史

    敏捷软件开发方法自 2001 年传入中国以来,历经十多年的发展变迁,目前已经成为国内 IT 企业主流的研发管理方法.敏捷方法的传播和发展历程,是中国 IT 行业发展的剪影.CODING 特邀敏捷顾问. ...

  2. unserialize3

    0x01序列化与反序列化 序列化:将变量转换为可保存或传输的字符串的过程. 反序列化:在适当的的时候把这个字符串再转化成原来的变量使用. 优点: 存储和传输数据更方便,使程序维护性更高. 函数: se ...

  3. python 定义一个插入数据(可以插入到每个表中)通用的方法

    前提置要:想要写一个方法,这个方法是插入数据到数据表的方法,只需要提供表名称,字段名称,还有插入的值,只要调用这个方法就可以自动帮助你插入数据 以下是不断实践优化出来 原本的插入数据库中的代码应该是这 ...

  4. python装饰器在接口自动化测试中的应用

    在讲解装饰器在接口自动化测试项目的应用之前,我们先来介绍一下python装饰器到底是个什么 装饰器 说装饰器就不得不提一下函数这个一等公民了,在python中函数有几个特性先来了解一下 函数的一些特性 ...

  5. 机器学习算法及代码实现–K邻近算法

    机器学习算法及代码实现–K邻近算法 1.K邻近算法 将标注好类别的训练样本映射到X(选取的特征数)维的坐标系之中,同样将测试样本映射到X维的坐标系之中,选取距离该测试样本欧氏距离(两点间距离公式)最近 ...

  6. 判断对象oStringObject是否为String

    1.操作符 (1)typeof操作符 格式:result=typeof variable 返回值: undefined 值未定义 boolean 布尔值 string 字符串 number 数值 ob ...

  7. jquery 滚轴滚动 导航定位和锚点定位

    自己写的,只测试了ie9+, firefox,chrome 以下js更好 var fixbar={ init:function(){ "use strict"; // 滚轴 导航位 ...

  8. python—day02_基本数据类型

    1,字符串 字符串常用功能: 移除空白 分割 长度 索引 切片 1)移除空白 """S.strip([chars]) -> str Return a copy of ...

  9. Spring 由构造函数自动装配

    Spring 由构造函数自动装配,这种模式与 byType 非常相似,但它应用于构造器参数. Spring 容器看作 beans,在 XML 配置文件中 beans 的 autowire 属性设置为 ...

  10. SPOJ-PGCD Primes in GCD Table

    题目链接:https://vjudge.net/problem/SPOJ-PGCD 题目大意: 给定 \(N\) 和 \(M\),求满足 \((1 \le x \le N), (1 \le y \le ...