解题思路:
很暴力的暴力dfs,但要注意的是此题不要直接用字符串,否则会TLE,使用对10取余、叠乘,亦可达到效果(详见代码),且运行速度会大大提升。
注意事项:
参考代码:
import java.io.*; import java.util.*; public class Main { static StreamTokenizer cin; static PrintWriter out; static int N; static int k = 9; static int maxN = (int)1E6; static int count = 0; static LinkedList<Integer> arr = new LinkedList<>(); public static void main(String[] args) throws IOException{ cin = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in))); out = new PrintWriter(new OutputStreamWriter(System.out)); N = nextInt(); for(int i = 1; i <= k; i++) arr.add(i); dfs(arr, new LinkedList<>()); out.println(count); out.flush(); out.close(); } static void dfs(LinkedList<Integer> list, LinkedList<Integer> his){ if(his.size() == k){ /**枚举带分数情况**/ int zheng = 0; for(int j = 0; j < his.size(); j++){ zheng = zheng*10 + his.get(j); if(zheng > N) // 剪枝 break; int rest = N - zheng; // 分数需要达到的数值 int split = j+(his.size()-j)/2; // 初始间隔位置 int fz = 0; // 分子 int fm = 0; // 分母 // 初始化分子分母 for(int z = j+1; z < split+1; z++) fz = fz*10 + his.get(z); for(int z = split+1;z < his.size(); z++) fm = fm*10 + his.get(z); if(zheng == 3 && fz == 6952 && fm == 8714) out.print(""); for(int z = split+1; z < his.size(); z++){ // 枚举分母位置split2, 可剪枝, 分子一定比分母大 if(fz%fm == 0 && fz/fm== rest){ count++; break; } if(z == his.size()-1) break; fz = fz*10 + his.get(z); fm = fm%((int)Math.pow(10, his.size() - z - 1)); } } return; } for(int i = 0; i < list.size(); i++){ int num = list.remove(i); his.add(num); dfs(list, his); // 回溯 his.removeLast(); list.add(i, num); } } static int nextInt() throws IOException{ cin.nextToken(); return (int)cin.nval; } }
0.0分
1 人评分
三进制小数 (C++代码)(第11位大于1.5才能进位)浏览:1203 |
C语言训练-8除不尽的数 (C语言代码)暴力解法,答案只有一个,直接输出就好了浏览:1045 |
点我有惊喜!你懂得!浏览:1462 |
C语言考试练习题_保留字母 (C语言代码)浏览:733 |
C语言训练-求矩阵的两对角线上的元素之和 (C语言代码)浏览:3472 |
C二级辅导-公约公倍 (C语言代码)浏览:1549 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:1084 |
【偶数求和】 (C语言代码)浏览:674 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:1314 |
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:637 |