摘要:
1 #include<iostream> 2 #include<stdlib.h> 3 #include<math.h> 4 using namespace std; 5 int a[15][2]; 6 int min_ = 0x3f3f3f3f; 7 void dfs(int n, int ind 阅读全文
摘要:
这题是一道遍历+数组的组合题。 特点就是将可以组合的数存到数组中,最后依次输出其中的数。 这题很用这种方法很巧,我一开始的想法是没找到一个就输出一个,但是那样子没法进行,因为如果某一条线路是错的,最终无法得到那个数,之前的结果已经被输出了。 所以,这种用数组保留结果的方法就很灵活。每次相加得得到得数 阅读全文
摘要:
1 #include<iostream> 2 using namespace std; 3 int cow[25]; 4 int min_high = 0x3f3f3f3f; 5 void dfs(int n,int len,int plus,int b) 6 { 7 if(plus>=b) 8 { 阅读全文