Chri_K

2020年10月22日

进制转换(noip2000)

摘要: #include<iostream> #include<cstdio> #include<cmath> #include<cstring> using namespace std; void change(int n,int r) { if(n==0) { return; } int m=n%r; 阅读全文

posted @ 2020-10-22 16:39 Chri_K 阅读(94) 评论(0) 推荐(0) 编辑
自然数的拆分(dfs)

摘要: #include<iostream> using namespace std; int a[100],n,m; void dfs(int dep,int pre,int sum) { if(sum==n) { for(int i=1; i<=dep-1; i++) { cout<<a[i]; if( 阅读全文

posted @ 2020-10-22 16:30 Chri_K 阅读(130) 评论(0) 推荐(0) 编辑
训练(training)

摘要: 50分代码(无能为力) 优先队列 #include<iostream> #include<queue> #define val first #define high second using namespace std; const int M = 1000000; int n,m; priorit 阅读全文

posted @ 2020-10-22 14:10 Chri_K 阅读(343) 评论(0) 推荐(0) 编辑
楼间跳跃

摘要: 50分 #include<bits/stdc++.h> #define val first #define high second using namespace std; const int M = 1000000; int n,m; priority_queue <pair<int,int> > 阅读全文

posted @ 2020-10-22 14:09 Chri_K 阅读(12) 评论(0) 推荐(0) 编辑