摘要:
#include<bits/stdc++.h>#include<vector>using namespace std;int lj[1010][1010];//邻接矩阵 //可以换成链式前向星之类的巴拉巴拉,这里用邻接矩阵演示比较清楚 int n,m;int flyd[1001][1001];int 阅读全文
摘要:
例题 P5318 【深基18.例3】查找文献 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn) #include<bits/stdc++.h> #include<vector> #include<queue> #define rep(i,a,b) for (int i=a; i<=b 阅读全文
摘要:
自我学习1.0 *自带使用说明 下载地址:https://files.cnblogs.com/files/blogs/777644/%E8%87%AA%E6%88%91%E5%AD%A6%E4%B9%A0.zip?t=1683299920&download=true 阅读全文
摘要:
因式分解模拟器3.0 *增加了错题本功能 *增加了查看我的错题 *增加了重置错题本功能 下载地址: https://files.cnblogs.com/files/blogs/777644/%E5%9B%A0%E5%BC%8F%E5%88%86%E8%A7%A3%E6%A8%A1%E6%8B%9F% 阅读全文
摘要:
*270题 原题传送门:http://oj.tfls.net/p/270 题解: #include<bits/stdc++.h> using namespace std; int a,b,c,ans=0; int main(){ int n; cin>>n; for (int i=1; i<=n-2 阅读全文
摘要:
*272题 原题传送门:http://oj.tfls.net/p/272 题解:(遍历,60分) #include<bits/stdc++.h> using namespace std; long long allday;//总天数 long long pas;//已经过去 long long mo 阅读全文
摘要:
*266题 原题传送门:http://oj.tfls.net/p/266 题解: #include<bits/stdc++.h> using namespace std; int t;//高能数字 int sfch(int a){//是否有一位是高能数字,我用的递归,直到为零 if (a==0) r 阅读全文
摘要:
*271题 原题传送门:http://oj.tfls.net/p/271 题解: #include<bits/stdc++.h> using namespace std; int cf(int a,int b){//a的b次方 int c=a; for (int i=1; i<b; i++)//乘 阅读全文
摘要:
*267题 原题传送门:http://oj.tfls.net/p/267 题解: #include<bits/stdc++.h> using namespace std; int c,m; int ans[30]; int sz[1005] = {6, 2, 5, 5, 4, 5, 6, 3, 7, 阅读全文