2020年6月30日
摘要: https://blog.csdn.net/qq_41875664/article/details/98870815 视频区 jdbc:https://www.bilibili.com/video/BV1x4411D7Bx?p=2 JDBC:.概念:Java DataBase Connectivit 阅读全文
posted @ 2020-06-30 15:59 lyyyt 阅读(109) 评论(0) 推荐(0) 编辑
  2020年3月9日
摘要: 一份错误的代码qaq,思路没问题,但是这个递归好像是回不去的 #include<bits/stdc++.h> using namespace std; int vis[10][10]; int a[10][10]; int dx[9]={0,0,0,1,1,1,-1,-1,-1}; int dy[9 阅读全文
posted @ 2020-03-09 18:42 lyyyt 阅读(157) 评论(0) 推荐(0) 编辑
  2020年3月8日
摘要: 这道题有挺多注意的点的,主要是新手还是要学习一个‘ 这是每次新开始的循环,第几次找,答案ans就是几,if语句满足判断才进行下一步 for(int i=0;i<m;i++)//m=4 for(int j=0;j<n;j++)//n=10 { if(a[i][j]) { ans++; dfs(i,j) 阅读全文
posted @ 2020-03-08 20:42 lyyyt 阅读(125) 评论(0) 推荐(0) 编辑
  2020年3月7日
摘要: dfs的简单问题,一个dfs函数一般情况应该输出一个结果 #include<bits/stdc++.h> using namespace std; int n; bool vis[20];//i是否访问过 int a[20]; void pr(){ for(int i=1;i<=n;i++) cou 阅读全文
posted @ 2020-03-07 21:19 lyyyt 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-03-07 18:33 lyyyt 阅读(75) 评论(0) 推荐(0) 编辑
  2020年3月6日
摘要: b站 https://space.bilibili.com/149965617 NPU_ACM https://space.bilibili.com/24014925 灯笼 https://space.bilibili.com/13480594 洛谷训练营 高精度模板 https://www.cnb 阅读全文
posted @ 2020-03-06 17:22 lyyyt 阅读(146) 评论(0) 推荐(0) 编辑
  2020年3月5日
摘要: https://www.luogu.com.cn/problem/P1803 调试出现了re while(cur>z[cnt].a&&cnt<n); 错写成了 while(cur>z[cnt].a); 导致了先越界了,外层的while还没有判断 #include<bits/stdc++.h> usi 阅读全文
posted @ 2020-03-05 20:33 lyyyt 阅读(133) 评论(0) 推荐(0) 编辑
摘要: https://www.luogu.com.cn/problem/P1051 1.用cin输入字符串,省事 #include<bits/stdc++.h> using namespace std; struct stu{ int num; string name; int score; int py 阅读全文
posted @ 2020-03-05 13:32 lyyyt 阅读(188) 评论(0) 推荐(0) 编辑
摘要: https://www.luogu.com.cn/problem/P1208 #include<bits/stdc++.h> using namespace std; struct farmer{ int price; int amount; }; struct farmer a[5050]; bo 阅读全文
posted @ 2020-03-05 13:29 lyyyt 阅读(198) 评论(0) 推荐(0) 编辑
摘要: https://www.luogu.com.cn/problem/P1090 优先队列 小根堆 priority_queue<int,vector<int>,greater<int> >q; 大根堆 priority_queue <int > q; #include<bits/stdc++.h> u 阅读全文
posted @ 2020-03-05 13:04 lyyyt 阅读(118) 评论(0) 推荐(0) 编辑