上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 27 下一页
摘要: code #include<iostream> using namespace std; const int N=10; int path[N]; int state[N]; int n; void dfs(int u){ if(u>n){ for(int i=1;i<=n;++i){ cout<< 阅读全文
posted @ 2022-03-10 09:43 ethon-wang 阅读(36) 评论(0) 推荐(0) 编辑
摘要: code #include<iostream> #include<algorithm> using namespace std; #define rep(i,a,b) for(int i=(a);i<=(b);++i) #define dwn(i,a,b) for(int i=(a);i>=(b); 阅读全文
posted @ 2022-03-09 10:18 ethon-wang 阅读(25) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/1963362/202203/1963362-20220307233258804-88322953.png) ![image](https://img2022.cnblogs.com/blog/1963362/202203/1963362-20220307233248347-802958854.png) 阅读全文
posted @ 2022-03-07 23:33 ethon-wang 阅读(30) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/1963362/202203/1963362-20220307220750896-197918593.png) 阅读全文
posted @ 2022-03-07 22:09 ethon-wang 阅读(412) 评论(0) 推荐(0) 编辑
摘要: 特性 支持latex link https://www.freeplane.org/wiki/index.php/Home 阅读全文
posted @ 2022-03-07 18:07 ethon-wang 阅读(27) 评论(0) 推荐(0) 编辑
摘要: code #include<algorithm> #include<cstring> #include<iostream> using namespace std; const int N=20,M=1<<N; int f[M][N],w[N][N]; int main(){ ios::sync_w 阅读全文
posted @ 2022-03-06 20:22 ethon-wang 阅读(30) 评论(0) 推荐(0) 编辑
摘要: code #include<iostream> #include<cstring> #define ll long long using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); ll a,b,p,res= 阅读全文
posted @ 2022-03-04 23:08 ethon-wang 阅读(34) 评论(0) 推荐(0) 编辑
摘要: code #include<iostream> #include<algorithm> using namespace std; #define ull unsigned long long ull quick_pow(ull a,ull b,ull p){ ull res=1; while(b){ 阅读全文
posted @ 2022-03-03 17:30 ethon-wang 阅读(119) 评论(0) 推荐(0) 编辑
摘要: code #include<iostream> #include<cstring> #include<algorithm> using namespace std; int n,m,ans,num; struct land{ int x,y,t; }; land island[100005]; in 阅读全文
posted @ 2022-03-02 12:20 ethon-wang 阅读(25) 评论(0) 推荐(0) 编辑
摘要: ref tip 运用非严格弱序判定任何a,b关键字都认为是不相等的。 这样的非严格弱序方法带来的问题 有序关联容器不允许存在相同的关键字,在用非严格弱序函数判断时,会认为相同的关键字是不相等的,因此会将两个相同的关键字插入容器中,这个行为是未定义的 阅读全文
posted @ 2022-03-02 10:19 ethon-wang 阅读(25) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 27 下一页