05 2023 档案

摘要:目前我已经联系了西工大,哈工大(威海),电子科大,杭高院、中南等,但是除了中南、都没有收到回信。 中南的回信是典型的官方回复。 直到今天套信工所的时候,老师的回信让我意识到了问题所在。 必须明确出自己的方向、 附图如下: 不能光说大白话、空话。"我感兴趣"但不是"我对xxxx感兴趣"。 阅读全文
posted @ 2023-05-16 16:55 尊滴菜 阅读(18) 评论(0) 推荐(0) 编辑
摘要:DFS深度优先遍历 回溯、剪枝、对应一条搜索树 全排列问题 #include <iostream> #include <algorithm> using namespace std ; const int N = 10 ; int n; int path[N] ; // 存方案的 bool st[N 阅读全文
posted @ 2023-05-07 15:41 尊滴菜 阅读(17) 评论(0) 推荐(0) 编辑
摘要:线性DP 数字三角形 给定一个如下图所示的数字三角形,从顶部出发,在每一结点可以选择移动至其左下方的结点或移动至其右下方的结点,一直走到底层,要求找出一条路径,使路径上的数字的和最大。 #include <iostream> #include <algorithm> using namespace 阅读全文
posted @ 2023-05-07 11:28 尊滴菜 阅读(8) 评论(0) 推荐(0) 编辑
摘要:第一题 水题,没啥好说的 #include <iostream> #include <cmath> using namespace std; const int N = 1e6 ; double a[N] ; int main(){ int n ; cin>>n ; double sum = 0; 阅读全文
posted @ 2023-05-02 10:39 尊滴菜 阅读(16) 评论(0) 推荐(0) 编辑
摘要:第一题 不给提示可能还真想不到,按照提示写就行 #include <cmath> #include <iostream> #include <iomanip> using namespace std; const int N = 1e6+10 ; int n,m ; int a[N],b[N],c[ 阅读全文
posted @ 2023-05-02 00:57 尊滴菜 阅读(14) 评论(0) 推荐(0) 编辑
摘要:第一题(太水了) #include <cmath> #include <iostream> #include <iomanip> using namespace std; const int N = 1e6+10 ; int n; double lixi, w, sum = 0; int main( 阅读全文
posted @ 2023-05-01 23:50 尊滴菜 阅读(18) 评论(0) 推荐(0) 编辑
摘要:第一题 直接满分了: #include <iostream> using namespace std ; const int N = 1e6 ; int n,a,b ; int panduan(int x1,int y1,int x2, int y2, int a,int b) { int c,k 阅读全文
posted @ 2023-05-01 22:18 尊滴菜 阅读(57) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示